.PHONY: all clean ALL = attocc attocc-small attocc-debug all: $(ALL) clean: rm $(ALL) attocc: attocc.c gcc -O3 -o $@ $< attocc-debug: attocc.c gcc -DDEBUG -Wall -Wextra -Wpedantic -o $@ $< attocc-small: attocc.c gcc -Wl,--gc-sections -flto -ffunction-sections -fdata-sections -fPIC -s -Os -o $@ $< strip -x $@