[svn-r5161] Purpose:

Bug Fix Fix
Description:
	The way I fixed the bug didn't work on Linux.
Solution:
	Changed so that we use the $* macro with a .c extension instead of
	assuming that $< won't have a full pathname already.
Platforms tested:
	Linux
This commit is contained in:
Bill Wendling 2002-04-10 11:15:07 -05:00
parent ecb4296890
commit 055bff2ecc

View File

@ -58,7 +58,7 @@ LIB_COBJ=$(LIB_XOBJ:.x=.o)
LIB_OBJ=$(PABLO_OBJ) $(LIB_COBJ)
.c.x:
$(CC) $(CFLAGS) $(CPPFLAGS) -c $(top_srcdir)/src/$< -o $*.o
$(CC) $(CFLAGS) $(CPPFLAGS) -c $(top_srcdir)/src/$*.c -o $*.o
cp $*.o $@
# 'vpath' directive is only supported in gmake, take out - QAK