Revision: 14765 Author: adrian.chadd Date: Sun Aug 29 00:11:52 2010 Log: Shuffle the old makefile out of the way for now
http://code.google.com/p/lusca-cache/source/detail?r=14765 Added: /branches/LUSCA_HEAD/test-suite/Makefile.lcl Deleted: /branches/LUSCA_HEAD/test-suite/Makefile ======================================= --- /dev/null +++ /branches/LUSCA_HEAD/test-suite/Makefile.lcl Sun Aug 29 00:11:52 2010 @@ -0,0 +1,29 @@ +CC = gcc +CFLAGS = -g -Wall -I../include -I../src +OBJS = membanger.o hash.o SizeToPool.o +LIB = -L. -lMem +TARGLIB = libMem.a +LIBOBJS = Mem.o \ + Stack.o +AR_R = /usr/bin/ar r +RM = rm +XTRA_LIBS = -lm -lmalloc + +all: membanger + +membanger: $(OBJS) $(TARGLIB) + $(CC) -o membanger $(OBJS) $(LIB) + +tcp-banger2: tcp-banger2.o + $(CC) -g -o $@ tcp-banger2.o + +tcp-banger2.o: tcp-banger2.c + $(CC) -c $(CFLAGS) tcp-banger2.c + +$(OBJS): Makefile + +$(TARGLIB): $(LIBOBJS) + $(AR_R) $(TARGLIB) $(LIBOBJS) + +clean: + rm $(OBJS) $(TARGLIB) $(LIBOBJS) ======================================= --- /branches/LUSCA_HEAD/test-suite/Makefile Thu Aug 20 12:53:32 1998 +++ /dev/null @@ -1,29 +0,0 @@ -CC = gcc -CFLAGS = -g -Wall -I../include -I../src -OBJS = membanger.o hash.o SizeToPool.o -LIB = -L. -lMem -TARGLIB = libMem.a -LIBOBJS = Mem.o \ - Stack.o -AR_R = /usr/bin/ar r -RM = rm -XTRA_LIBS = -lm -lmalloc - -all: membanger - -membanger: $(OBJS) $(TARGLIB) - $(CC) -o membanger $(OBJS) $(LIB) - -tcp-banger2: tcp-banger2.o - $(CC) -g -o $@ tcp-banger2.o - -tcp-banger2.o: tcp-banger2.c - $(CC) -c $(CFLAGS) tcp-banger2.c - -$(OBJS): Makefile - -$(TARGLIB): $(LIBOBJS) - $(AR_R) $(TARGLIB) $(LIBOBJS) - -clean: - rm $(OBJS) $(TARGLIB) $(LIBOBJS) -- You received this message because you are subscribed to the Google Groups "lusca-commit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/lusca-commit?hl=en.
