diff options
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -5,11 +5,11 @@ clean: rm $(ALL) attocc: attocc.c - cc -O3 -o $@ $< + cc -DDEBUG -O3 -o $@ $< attocc-debug: attocc.c cc -DDEBUG -Wall -Wextra -Wpedantic -o $@ $< attocc-small: attocc.c - cc -Wl,--gc-sections -flto -ffunction-sections -fdata-sections -fPIC -s -Os -o $@ $< + cc -DDEBUG -Wl,--gc-sections -flto -ffunction-sections -fdata-sections -fPIC -s -Os -o $@ $< strip -x $@ |