X-Git-Url: http://git.tuebingen.mpg.de/?p=adu.git;a=blobdiff_plain;f=Makefile;fp=Makefile;h=a4293c70855de02f0d9069ff3ec9e90ce4958886;hp=0cce3b9b4f2fc2dce22e46a645d2a9a8d76d6c3b;hb=76c1de74e9dbdeef52629632de91a50ed6e20dbe;hpb=bd0166ae6242deafc9b3436199965420517033b5 diff --git a/Makefile b/Makefile index 0cce3b9..a4293c7 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 user.o all: adu version := 0.0.5 +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,13 +14,20 @@ 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 + + +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)