summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2025-04-12 16:02:00 +0200
committermetamuffin <metamuffin@disroot.org>2025-04-12 16:02:00 +0200
commitaccdadbababdada12ac2f005c2faa9936d8101a6 (patch)
treef6d566f8d39fe0598f13184bdd361131d8ba6b52 /makefile
parentde93325a308cd71e251c697b99b8fa2f27f6623c (diff)
downloadattocc-accdadbababdada12ac2f005c2faa9936d8101a6.tar
attocc-accdadbababdada12ac2f005c2faa9936d8101a6.tar.bz2
attocc-accdadbababdada12ac2f005c2faa9936d8101a6.tar.zst
enum decls but broken
Diffstat (limited to 'makefile')
-rw-r--r--makefile10
1 files changed, 6 insertions, 4 deletions
diff --git a/makefile b/makefile
index dae0c7d..07dcb29 100644
--- a/makefile
+++ b/makefile
@@ -1,5 +1,10 @@
.PHONY: all clean test
-ALL = attocc attocc-small attocc-debug attocc-test
+
+attocc: attocc.c
+ cc -DDEBUG -O3 -o $@ $<
+
+ALL = attocc attocc-small attocc-debug attocc-test attocc-test-opt
+
all: $(ALL)
clean:
rm $(ALL)
@@ -7,9 +12,6 @@ test: attocc-test attocc-test-opt
./attocc-test
./attocc-test-opt
-attocc: attocc.c
- cc -DDEBUG -O3 -o $@ $<
-
attocc-debug: attocc.c
cc -DDEBUG -Wall -Wextra -Wpedantic -Og -g -o $@ $<