From 3bc3ad24a2c089b4ee80fc1765fab3d2af378d00 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Tue, 26 Aug 2003 21:43:31 +0000 Subject: Initial commit git-svn-id: file:///home/lennart/svn/public/syrep/trunk@2 07ea20a6-d2c5-0310-9e02-9ef735347d72 --- src/Makefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/Makefile (limited to 'src/Makefile') diff --git a/src/Makefile b/src/Makefile new file mode 100644 index 0000000..45f00b2 --- /dev/null +++ b/src/Makefile @@ -0,0 +1,18 @@ +CFLAGS=-Wall -pipe -O0 -g +CC=gcc + + +all: syrep + +syrep: cache.o update.o util.o syrep.o md5.o md5util.o context.o package.o dbutil.o cmdline.o info.o history.o dump.o list.o diff.o merge.o + $(CC) -g $^ -o $@ -ldb + +cmdline.c cmdline.h: syrep.ggo Makefile + gengetopt --unamed-opts < $< + +update.o: cmdline.h + +clean: + rm -f *.o syrep cmdline.[ch] + +.PHONY: all clean -- cgit