X-Git-Url: http://git.tuebingen.mpg.de/?p=adu.git;a=blobdiff_plain;f=Makefile;h=b595c682d81c3846a3e4f383ead5a8db9a36be03;hp=266d74877ddb21f7de5edb9eefeee7c2ec4d266b;hb=cecbe8525740b4a899cb1a6c91064e195ae1ada2;hpb=a4cf08e8062d1d73c343a628563acf4d9f454742 diff --git a/Makefile b/Makefile index 266d748..b595c68 100644 --- a/Makefile +++ b/Makefile @@ -1,17 +1,26 @@ -objects := osl.o fd.o rbtree.o string.o adu.o sha1.o +objects := adu.o string.o cmdline.o fd.o select.o create.o interactive.o select.cmdline.o all: adu +version := 0.0.3 DEBUG_CPPFLAGS += -Wno-sign-compare -g -Wunused -Wundef -W DEBUG_CPPFLAGS += -Wredundant-decls -#CPPFLAGS += -Os +CPPFLAGS += -Os CPPFLAGS += -Wall -#CPPFLAGS += -Wuninitialized +CPPFLAGS += -Wuninitialized CPPFLAGS += -Wchar-subscripts CPPFLAGS += -Wformat-security CPPFLAGS += -Werror-implicit-function-declaration CPPFLAGS += -Wmissing-format-attribute CPPFLAGS += -Wunused-macros CPPFLAGS += -Wbad-function-cast +CPPFLAGS += -D_LARGEFILE64_SOURCE +CPPFLAGS += $(shell getconf LFS64_CFLAGS) +CPPFLAGS += -DVERSION='"$(version)"' + +LDFLAGS += -D_LARGEFILE64_SOURCE +LDFLAGS += $(shell getconf LFS64_LDFLAGS) +LDFLAGS += $(shell getconf LFS64_LIBS) + Makefile.deps: $(wildcard *.c *.h) gcc -MM -MG *.c > $@ @@ -19,10 +28,30 @@ Makefile.deps: $(wildcard *.c *.h) -include Makefile.deps adu: $(objects) - $(CC) -o $@ $(objects) -lssl + $(CC) -o $@ $(LDFLAGS) $(objects) -lcrypto -losl + +cmdline.o: cmdline.c cmdline.h + $(CC) -c $(CPPFLAGS) $< + +cmdline.c cmdline.h: adu.ggo + gengetopt --conf-parser < $< + %.o: %.c Makefile $(CC) -c $(CPPFLAGS) $(DEBUG_CPPFLAGS) $< +select.cmdline.c select.cmdline.h: select.ggo + gengetopt --string-parser \ + --set-package=select \ + --no-handle-help \ + --no-handle-error \ + --no-handle-version \ + --arg-struct-name=select_args_info \ + --file-name=$(subst .ggo,,$<).cmdline \ + --func-name $(subst .ggo,,$<)_cmdline_parser < $< + +select.cmdline.o: select.cmdline.c select.cmdline.h + $(CC) -c $(CPPFLAGS) $< + clean: rm -f *.o adu