X-Git-Url: https://git.gag.com/?a=blobdiff_plain;ds=sidebyside;f=debian%2Fpatches%2Fmakefile-support-hardening;fp=debian%2Fpatches%2Fmakefile-support-hardening;h=0000000000000000000000000000000000000000;hb=5c1a6d157558fc44a3c7b4248b6dbd953438d5e7;hp=51d26a734e1474867d7b0e8842fc327030e6cf08;hpb=5ae0b2351b8f682901e764c43ea1f9ecd198124f;p=debian%2Fyforth diff --git a/debian/patches/makefile-support-hardening b/debian/patches/makefile-support-hardening deleted file mode 100644 index 51d26a7..0000000 --- a/debian/patches/makefile-support-hardening +++ /dev/null @@ -1,29 +0,0 @@ -diff --git a/Makefile b/Makefile -index 5e0fddb..301fd02 100644 ---- a/Makefile -+++ b/Makefile -@@ -1,4 +1,3 @@ --OPTIMIZE = -O2 - CC = gcc - MATHLIB = -lm - -@@ -13,16 +12,16 @@ INCLUDES = block.h blocke.h config.h core.h coree.h defaults.h double.h \ - string.h tools.h toolse.h udio.h ver.h ycore.h yforth.h - - yforth: div.h $(OBJECTS) -- $(CC) -o yforth $(OBJECTS) $(MATHLIB) -+ $(CC) -o yforth $(LDFLAGS) $(OBJECTS) $(MATHLIB) - - div.h: div - ./div - - div: division.c -- $(CC) -o div division.c -+ $(CC) -o div $(CFLAGS) $(CPPFLAGS) division.c - - .c.o: -- $(CC) -c -o $@ $(OPTIMIZE) $< -+ $(CC) -c -o $@ $(CFLAGS) $(CPPFLAGS) $< - - clean: - rm -f *.o yforth div.h div