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
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)