diff options
author | metamuffin <metamuffin@disroot.org> | 2025-04-12 16:02:00 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-04-12 16:02:00 +0200 |
commit | accdadbababdada12ac2f005c2faa9936d8101a6 (patch) | |
tree | f6d566f8d39fe0598f13184bdd361131d8ba6b52 /makefile | |
parent | de93325a308cd71e251c697b99b8fa2f27f6623c (diff) | |
download | attocc-accdadbababdada12ac2f005c2faa9936d8101a6.tar attocc-accdadbababdada12ac2f005c2faa9936d8101a6.tar.bz2 attocc-accdadbababdada12ac2f005c2faa9936d8101a6.tar.zst |
enum decls but broken
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -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 $@ $< |