Thanks for the help!!
I added this line to Makefile:
all: my_app $(LIB_OBJS )

Well it did compile the test.cpp file, but none of the files declared in the 
Makefile.jme were compiled or linked, what else can I do?
I am sure this is just a stupid thing and that it is obvious to you and most of the 
folks reading this message, but I really don't have a clue.

TIAA
Mike Gibson <[EMAIL PROTECTED]> wrote:

>When you don't specify a target on the command line, make assumes that 
>you want to build the target for the first rule in the file.  Since:
>
>> exception.o: $(EXCEPTION_H)
>>     $(CC) $(JMECFLAGS) -c $(EXCEPTION_C)
>
>is the first rule, that is all it creates.
>
>What most folks do is to create a phony target "all" which depends on 
>the file(s) that you want to create by default as the first rule in the 
>file:
>
>all : my_app
>
>This will have the effect of trying to make my_app, which will trigger 
>the other rules and so forth down the line until make has come up with a 
>sequence of commands to run.
>
>Mike Gibson
>
>


-- 
You experience miracles everyday, the first one today happened when you first opened 
your eyes!
     --- Jorge Escalante


__________________________________________________________________
Switch to Netscape Internet Service.
As low as $9.95 a month -- Sign up today at http://isp.netscape.com/register

Netscape. Just the Net You Need.

New! Netscape Toolbar for Internet Explorer
Search from anywhere on the Web and block those annoying pop-ups.
Download now at http://channels.netscape.com/ns/search/install.jsp


_______________________________________________
Help-make mailing list
[EMAIL PROTECTED]
http://lists.gnu.org/mailman/listinfo/help-make

Reply via email to