From bcf8a4dc691d4154a62a3f1dfdb8500756d2f991 Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Thu, 25 Apr 2013 23:42:34 +0200 Subject: [PATCH] Use 64 bit file offsets. --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ed17d66..447da7b 100644 --- a/Makefile +++ b/Makefile @@ -2,6 +2,8 @@ PREFIX=$(HOME) BINDIR=$(PREFIX)/bin +FLAGS=-D_FILE_OFFSET_BITS=64 + all: ccp cmv cmv: ccp @@ -11,7 +13,7 @@ ccp: ccp.o gcc -o $@ $^ ccp.o: ccp.c - gcc -Wall -c -o $@ $^ + gcc -Wall $(FLAGS) -c -o $@ $^ install: all cp ccp "$(BINDIR)/ccp" -- 2.7.4