From c36729b5bc431c38a63fafa1530f3a77629d489e Mon Sep 17 00:00:00 2001 From: Thomas Bernard Date: Mon, 29 Jan 2018 16:54:44 +0100 Subject: [PATCH] Compile tools --- Makefile | 9 ++++++++- tools/Makefile | 9 +++++++++ tools/gifanalyzer/.gitignore | 2 ++ 3 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 tools/Makefile create mode 100644 tools/gifanalyzer/.gitignore diff --git a/Makefile b/Makefile index 36681817..b2ed7673 100644 --- a/Makefile +++ b/Makefile @@ -1,2 +1,9 @@ -all: +.PHONY: all tools grafx2 + +all: grafx2 tools + +grafx2: $(MAKE) -C src/ + +tools: + $(MAKE) -C tools/ diff --git a/tools/Makefile b/tools/Makefile new file mode 100644 index 00000000..0ad4bb5a --- /dev/null +++ b/tools/Makefile @@ -0,0 +1,9 @@ +.PHONY: all gifanalyzer sdl_image_test + +all: gifanalyzer sdl_image_test + +gifanalyzer: + $(MAKE) -C $@ + +sdl_image_test: + $(MAKE) -C $@ diff --git a/tools/gifanalyzer/.gitignore b/tools/gifanalyzer/.gitignore new file mode 100644 index 00000000..831948b2 --- /dev/null +++ b/tools/gifanalyzer/.gitignore @@ -0,0 +1,2 @@ +*.o +gifanalyzer