dedup

deduplicating backup program
git clone git://git.2f30.org/dedup
Log | Files | Refs | README | LICENSE

commit 0aab9028e974842e523f3e9ccfd06e9949c32efb
parent ec866bc6c38a907bd94f3954119217c36eac50f3
Author: sin <sin@2f30.org>
Date:   Thu, 25 Apr 2019 14:16:24 +0100

Move CPPFLAGS to config.mk

Diffstat:
MMakefile | 1-
Mconfig.mk | 2++
2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -29,7 +29,6 @@ DINITOBJ = $(COMMOBJ) dup-init.o DPACKOBJ = $(COMMOBJ) dup-pack.o DUNPACKOBJ = $(COMMOBJ) dup-unpack.o -CPPFLAGS = -D_FILE_OFFSET_BITS=64 LDLIBS = -lsnappy all: $(BIN) diff --git a/config.mk b/config.mk @@ -1,3 +1,5 @@ VERSION = 1.0 PREFIX = /usr/local MANPREFIX = $(PREFIX)/man + +CPPFLAGS = -D_FILE_OFFSET_BITS=64