diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/tools/Makefile b/tools/Makefile index 4a04027fc..66e9be8a5 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -1,13 +1,18 @@ -.PHONY: all +.PHONY: all clean -all: \ +tools := \ lzcomp \ png_dimensions \ scan_includes \ palette \ pokemon_animation \ pokemon_animation_graphics + +all: $(tools) @: +clean: + rm -f $(tools) + %: %.c $(CC) -o $@ $< |