summaryrefslogtreecommitdiffstats
path: root/src/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/Makefile b/src/Makefile
deleted file mode 100644
index 97994b5..0000000
--- a/src/Makefile
+++ /dev/null
@@ -1,17 +0,0 @@
-CFLAGS=-Wall -pipe -O0 -g -DARCH_IS_BIG_ENDIAN=0 -D_FILE_OFFSET_BITS=64 -DPACKAGE_VERSION=\"0.1\"
-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 extract.o makepatch.o cleanup.o
- $(CC) -g $^ -o $@ -ldb -lz
-
-cmdline.c cmdline.h: syrep.ggo Makefile
- gengetopt --unamed-opts --no-handle-help --no-handle-version < $<
-
-update.o: cmdline.h
-
-clean:
- rm -f *.o syrep cmdline.[ch]
-
-.PHONY: all clean