X-Git-Url: http://git.tuebingen.mpg.de/?p=adu.git;a=blobdiff_plain;f=Makefile;h=58202a224a6634ed39288ccf3b44f263ee715fb7;hp=2f1fb471dd05fe435b63d9c1471a0589b761fd75;hb=1e5a1cb342d8cba5c55a720eaca1f095d516ba51;hpb=4c71ff7f9b6afe7c15331a1cc9e134c2db65cd73 diff --git a/Makefile b/Makefile index 2f1fb47..58202a2 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,7 @@ -objects := adu.o string.o cmdline.o fd.o select.o create.o interactive.o select.cmdline.o format.o +objects := adu.o string.o cmdline.o fd.o select.o create.o interactive.o select.cmdline.o format.o user.o bloom.o all: adu -version := 0.0.3 +version := 1.0.0 +uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not') DEBUG_CPPFLAGS += -Wno-sign-compare -g -Wunused -Wundef -W DEBUG_CPPFLAGS += -Wredundant-decls @@ -13,36 +14,47 @@ 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)"' +CPPFLAGS += -I/usr/local/include -LDFLAGS += -D_LARGEFILE64_SOURCE -LDFLAGS += $(shell getconf LFS64_LDFLAGS) -LDFLAGS += $(shell getconf LFS64_LIBS) +LDFLAGS += -L/usr/local/lib + +PREFIX ?= /usr/local +ifeq "$(origin CC)" "default" + CC := gcc +endif + + +ifeq (,$(findstring BSD,$(uname_S))) + CPPFLAGS += -D_LARGEFILE64_SOURCE + CPPFLAGS += $(shell getconf LFS64_CFLAGS) + LDFLAGS += -D_LARGEFILE64_SOURCE + LDFLAGS += $(shell getconf LFS64_LDFLAGS) + LDFLAGS += $(shell getconf LFS64_LIBS) + CPPFLAGS += -DHAVE_STAT64=1 +endif Makefile.deps: $(wildcard *.c *.h) - gcc -MM -MG *.c > $@ + $(CC) $(CPPFLAGS) -MM -MG *.c > $@ -include Makefile.deps adu: $(objects) - $(CC) -o $@ $(LDFLAGS) $(objects) -lcrypto -losl + $(CC) -o $@ $(LDFLAGS) $(objects) -losl cmdline.o: cmdline.c cmdline.h $(CC) -c $(CPPFLAGS) $< cmdline.c cmdline.h: adu.ggo - gengetopt --conf-parser < $< + gengetopt --no-handle-error --no-handle-help < $< %.o: %.c Makefile $(CC) -c $(CPPFLAGS) $(DEBUG_CPPFLAGS) $< select.cmdline.c select.cmdline.h: select.ggo - gengetopt --string-parser \ - --set-package=select \ + gengetopt --set-package=select \ --no-handle-help \ --no-handle-error \ --no-handle-version \ @@ -53,5 +65,24 @@ select.cmdline.c select.cmdline.h: select.ggo select.cmdline.o: select.cmdline.c select.cmdline.h $(CC) -c $(CPPFLAGS) $< +adu.1: adu adu.1.inc + help2man -h --detailed-help --include adu.1.inc -N ./$< > $@ + +%.1.html: %.1 + man2html $< | sed -e 's|^
$$|

|g' > $@ + clean: - rm -f *.o adu + rm -f *.o adu *cmdline.c *cmdline.h adu.1 adu.1.html index.html + +index.html: adu.1.html index.html.in INSTALL README + sed -e '/@README@/,$$d' index.html.in > $@ + grutatxt -nb < README >> $@ + sed -e '1,/@README@/d' -e '/@INSTALL@/,$$d' index.html.in >> $@ + grutatxt -nb < INSTALL >> $@ + sed -e '1,/@INSTALL@/d' -e '/@MAN_PAGE@/,$$d' index.html.in >> $@ + sed -e '1,/Return to Main Contents/d' -e '/Index/,$$d' adu.1.html >> $@ + sed -e '1,/@MAN_PAGE@/d' index.html.in >> $@ + +install: adu adu.1 + install -s adu $(PREFIX)/bin + install -m 0644 adu.1 $(PREFIX)/man/man1