aboutsummaryrefslogtreecommitdiffstats
path: root/makefile
diff options
context:
space:
mode:
authorM.Gergő2020-05-15 04:15:18 +0200
committerM.Gergő2020-05-15 04:15:18 +0200
commit93f237d71e080512442399b444357dfa7b6f1822 (patch)
tree6fe87499f38970cf100b42a1a956c651fd5e5e74 /makefile
parent286199e71f65b44d16e3684501935ec5b9556e9a (diff)
downloadlightconfini-93f237d71e080512442399b444357dfa7b6f1822.tar.gz
lightconfini-93f237d71e080512442399b444357dfa7b6f1822.zip
Backported to c89
Diffstat (limited to 'makefile')
-rw-r--r--makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/makefile b/makefile
index a01a0dd..8cab41f 100644
--- a/makefile
+++ b/makefile
@@ -6,7 +6,8 @@ LD = gcc
# néhány apróság:
MKD = /bin/mkdir -p
-RM = /bin/rm
+# A '-' jel miatt átugorja a hibát
+RM = -/bin/rm
# fordíto általános flagek
@@ -29,7 +30,7 @@ all: $(PROG)
# debug-hoz felüldefiniálva
-debug: CFLAGS = -Wall -g -g3 -ggdb -Wpedantic -Wmissing-prototypes
+debug: CFLAGS = -Wall -g -g3 -ggdb -std=c89 -Wpedantic -Wmissing-prototypes
debug: LDFLAGS =
debug: LDLIBS = -lefence
# nem mindegy, hogy mellette van, vagy alatta egy sorral!