Main Page   Class Hierarchy   Compound List   File List   Compound Members   File Members   Related Pages  

Makefile.bak

00001 
00002 HDRS := conv.h   ccvt.h
00003 SRCS := conv.cpp ccvt_c.c ccvt_i386.S
00004 OBJS := conv.o   ccvt_c.o ccvt_i386.o
00005 
00006 RM  ?= rm -f 
00007 
00008 
00009 # targets
00010 
00011 all: $(OBJS)
00012 
00013 %.o: %.cpp
00014         g++ -c $<
00015 
00016 %.o: %.c
00017         gcc -c $<
00018 
00019 %.o: %.S
00020         gcc -c $<
00021 
00022 clean:
00023         rm -f *.o
00024 
00025 depend: ${SRCS} ${HDRS}
00026         /usr/bin/X11/makedepend -- ${CFLAGS} ${INCDIRS} -- ${SRCS} 
00027 
00028 # DO NOT DELETE THIS LINE -- make depend depends on it.
00029 
00030 conv.o: ccvt.h conv.h
00031 ccvt_c.o: ccvt.h

Generated at Fri Aug 13 17:29:21 2004 for libRTImage by doxygen1.2.8.1 written by Dimitri van Heesch, © 1997-2001