From a191ec38aeee0380d3cd6cf2f4a568c121ceaac9 Mon Sep 17 00:00:00 2001 From: dborth Date: Wed, 3 Jun 2009 22:30:46 +0000 Subject: [PATCH] add global makefile :) --- Makefile | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..3ee0c61 --- /dev/null +++ b/Makefile @@ -0,0 +1,20 @@ +all: + cd SDL; $(MAKE) -f Makefile + cd SDL_gfx; $(MAKE) -f Makefile + cd SDL_image; $(MAKE) -f Makefile + cd SDL_net; $(MAKE) -f Makefile + cd SDL_ttf; $(MAKE) -f Makefile + +clean: + cd SDL; $(MAKE) -f Makefile clean + cd SDL_gfx; $(MAKE) -f Makefile clean + cd SDL_image; $(MAKE) -f Makefile clean + cd SDL_net; $(MAKE) -f Makefile clean + cd SDL_ttf; $(MAKE) -f Makefile clean + +install: + cd SDL; $(MAKE) -f Makefile install + cd SDL_gfx; $(MAKE) -f Makefile install + cd SDL_image; $(MAKE) -f Makefile install + cd SDL_net; $(MAKE) -f Makefile install + cd SDL_ttf; $(MAKE) -f Makefile install