Makefile issues


 
Thread Tools Search this Thread
Top Forums Programming Makefile issues
# 1  
Old 03-20-2010
Makefile issues

I have the make:11: *** No seperator issue with my make file.

So I needed to tab all the commands and I needed a proper editor such as RHIDE, after I downlaoded it, its make file was also corrupted and broken.

Out of options, I come to forums for assistance.

Would anyone please fix it for me, if you have a editor?

Please do not give me responses such as "Google it" or "search for it", as I already did and would not be here if I didn't. This is my LAST resort. Please help me. I have no problem giving rep power or thanking posts, but please help?

I have added the attachment of the whole program, if you do fix it, then please pack it as a tar.gz again. Smilie

Attention Moderators!
The program is not malicious in any way, or intended to hacking purposes, the wraith irc botpack is STRICTLY for managing and securing my IRC channel(s).
# 2  
Old 03-20-2010
Terribly sorry for double posting but here is the attachment!
# 3  
Old 03-21-2010
What does this have to do with shell scripting?

Please post in an appropriate forum.
# 4  
Old 03-21-2010
Well, I searched on the forum and most makefile issues and related discussions were located here.
# 5  
Old 03-21-2010
FWIW -
Quote:
... after I downlaoded it, its make file was also corrupted and broken.
I think your problem is not makefile related. You are doing something to trash the extraction of your make file. Why? because having two completely unrelated sources lead to the same failed result means the problem very likely lies on your box.

What EXACTLY did you do?
# 6  
Old 03-21-2010
alright

1. I downloaded the attachement
2. extracted it
3. opened the command prompt
4. navigated TO the extracted folder
5. i then navigated to the autotools folder, where the makefile was located
6. i typed in make
7. i get this now:

Cleaning...
aclocal -I includes/
process_begin: CreateProcess(NULL, aclocal -I includes/, ...) failed.
make (e=2): The system cannot find the file specified.
make: *** [aclocal] Error 2




please, to get a better understanding download the attachemtn and try to compile, and tell me what you did? i am using WINAVR
# 7  
Old 03-21-2010
WINAVR is for RISC cpus running on Windows, correct? I assume it provides gcc since you are downloading it and trying to make it.

First off, the stuff you downloaded was meant for windows? Correct? If that is is the case the makefile is probably aimed at Visual Studio rather than gcc. Visual Studio follows its own piper for everything from what it thinks is valid C/C++ to makefiles.
It does not match UNIX.

Second, if it is for WINAVR, which I doubt, what are you extracting the files with? Winzip for Windows? In that case when you go into your WINAVR unix toolset and edit the makefile with vi do you see oddball characters? like maybe ^M?

I am still convinced you are mixing apples and oranges, somewhere along the line.
Did you get your downloads from sourceforge? I have never had or heard of the problem you mention. And I've worked on projects there.

google for 'wraith for windows' shows me absolutely nothing, except gamer links to wareseeker.com
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Homework & Coursework Questions

Help with Simple Multi-Level Makefile (Extremely New at Makefile)

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: Basically, the prompt is make a makefile with various sub makefiles in their respective subdirectories. All code... (1 Reply)
Discussion started by: Tatl
1 Replies

2. UNIX for Dummies Questions & Answers

Issues with Makefile (cannot find )

Hello guys ! Need a bit of help is compiling a code, the makefile for which was originally designed to work on a 32-bit Linux platform, for a 64-bit Linux platform. My platform is Ubuntu 10.04 LTS 64-bit. I am trying to compile a code called csim, file name csim-1.1.tar.gz. To compile this... (0 Replies)
Discussion started by: pbhat
0 Replies

3. UNIX for Dummies Questions & Answers

Help with makefile

what does the -f mean in the following command ? make -f file and whats the difference if you don't add it? (2 Replies)
Discussion started by: omega666
2 Replies

4. UNIX for Advanced & Expert Users

Makefile executing another Makefile first?

I have 2 libraries in 2 different directories that I build with Makefiles. library B depends on library A. If I modify a .cpp file in library A and run lib B's Makefile can I have B's makefile to automatically rebuild library A? I am now rebuilding A, followed by B... but I'd like B to... (0 Replies)
Discussion started by: wwuster
0 Replies

5. Programming

[Makefile] nothing to be done for 'all'

hello, I have a firts makefile who call others makefile. for this i use: $ make -f linux.mak and output his: $ make -f linux.mak all make -C DerelictAL all PLATFORM=linux make: Entering directory `/home/builder/rpmbuild/SOURCES/derelict2-20100407/DerelictAL' make: Nothing to be done for... (2 Replies)
Discussion started by: bioinfornatics
2 Replies

6. UNIX for Dummies Questions & Answers

MakeFile Issues

Ok, so apparently, when the package that has this makefile in it is installed, it changes the permissions and ownership of /var/ and /var/home to cacti. how can i modify the below so that only /var/home/cacti is given the ownership cacti:cacti and 755? thanks rm -rf fakeroot ... (1 Reply)
Discussion started by: SkySmart
1 Replies

7. Programming

makefile help

Hi all, I'm new to make files . I'm writing a make file to compile and create .so files. i've 20 .cpp files. I want to compile one file at a time and then i've to create 1 .so for each file that i compiled. for eg: list.mk is having all the 20 .spp files. name = a.cpp name =+... (2 Replies)
Discussion started by: vij_krr
2 Replies

8. Programming

Makefile help

I've copied a C++ project from my old computer to this one, and I am now trying to (without success) compile the project in the same way as I did before. I use Emacs as a text editor and compile with g++. Here is what my makefile looks like: CC=g++ CPPFLAGS=-Wall CPPFLAGS+=-I..... (4 Replies)
Discussion started by: TriKri
4 Replies

9. UNIX for Advanced & Expert Users

Makefile problem - How to run module load in a Makefile

Hi, I'm trying to run the module load command in a Makefile and i'm getting the following error: make: module: command not found Why is this? Is there any way to run this command in a Makefile? NOTE: command - module load msjava/sunjdk/1.5.0 works fine outside of the Makefile (2 Replies)
Discussion started by: hernandinho
2 Replies

10. Programming

Makefile

I m using SUN Studiuo11 compiler.There is problem while building Makefile. I got error as dmake:fetal error command failed for target plz help me. (7 Replies)
Discussion started by: NamrataGurav
7 Replies
Login or Register to Ask a Question