1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
From: Christian Kastner <ckk@kvr.at>
Date: Sat, 26 Dec 2015 20:18:21 +0100
Subject: Debian build process customizations
Build process customizations for building under Debian. Most notably, disable
upstream's optimization and stripping; our build process does that.
Forwarded: not-needed
Last-Update: 2015-12-26
---
Makefile | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/Makefile b/Makefile
index c4c32ad..c8c3bcf 100644
--- a/Makefile
+++ b/Makefile
@@ -78,11 +78,11 @@ DEFS =
#INSTALL = installbsd
INSTALL = install
#<<any special load flags>>
-LDFLAGS =
+#LDFLAGS =
#################################### end configurable stuff
SHELL = /bin/sh
-CFLAGS = $(OPTIM) $(INCLUDE) $(COMPAT) $(DEFS)
+CFLAGS += $(INCLUDE) $(COMPAT) $(DEFS)
INFOS = README CHANGES FEATURES INSTALL CONVERSION THANKS MAIL
MANPAGES = bitstring.3 crontab.5 crontab.1 cron.8 putman.sh
@@ -113,13 +113,14 @@ crontab : $(CRONTAB_OBJ)
$(CC) $(LDFLAGS) -o crontab $(CRONTAB_OBJ) $(LIBS)
install : all
- $(INSTALL) -c -m 111 -o root -s cron $(DESTSBIN)/
- $(INSTALL) -c -m 4111 -o root -s crontab $(DESTBIN)/
+ $(INSTALL) -c -m 755 -o root cron $(DESTSBIN)/
+ $(INSTALL) -c -m 4755 -o root crontab $(DESTBIN)/
sh putman.sh crontab.1 $(DESTMAN)
sh putman.sh cron.8 $(DESTMAN)
sh putman.sh crontab.5 $(DESTMAN)
-clean :; rm -f *.o cron crontab a.out core tags *~ #*
+clean :
+ rm -f *.o cron crontab a.out core tags *~ #*
kit : $(SHAR_SOURCE)
makekit -m -s99k $(SHAR_SOURCE)
|