Compile tools

This commit is contained in:
Thomas Bernard 2018-01-29 16:54:44 +01:00
parent d0417faad2
commit c36729b5bc
3 changed files with 19 additions and 1 deletions

View File

@ -1,2 +1,9 @@
all:
.PHONY: all tools grafx2
all: grafx2 tools
grafx2:
$(MAKE) -C src/
tools:
$(MAKE) -C tools/

9
tools/Makefile Normal file
View File

@ -0,0 +1,9 @@
.PHONY: all gifanalyzer sdl_image_test
all: gifanalyzer sdl_image_test
gifanalyzer:
$(MAKE) -C $@
sdl_image_test:
$(MAKE) -C $@

2
tools/gifanalyzer/.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
*.o
gifanalyzer