From c3529e7cfee589e3643805178d6876dfb91672a1 Mon Sep 17 00:00:00 2001 From: dborth Date: Fri, 27 Nov 2009 09:19:17 +0000 Subject: [PATCH] reorder makefile for dependencies --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 4ab595b..144d821 100644 --- a/Makefile +++ b/Makefile @@ -1,26 +1,26 @@ all: cd SDL; $(MAKE) -f Makefile cd SDL_gfx; $(MAKE) -f Makefile + cd smpeg; $(MAKE) -f Makefile cd SDL_mixer; $(MAKE) -f Makefile cd SDL_image; $(MAKE) -f Makefile cd SDL_net; $(MAKE) -f Makefile cd SDL_ttf; $(MAKE) -f Makefile - cd smpeg; $(MAKE) -f Makefile clean: cd SDL; $(MAKE) -f Makefile clean cd SDL_gfx; $(MAKE) -f Makefile clean + cd smpeg; $(MAKE) -f Makefile clean cd SDL_mixer; $(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 - cd smpeg; $(MAKE) -f Makefile clean install: cd SDL; $(MAKE) -f Makefile install cd SDL_gfx; $(MAKE) -f Makefile install + cd smpeg; $(MAKE) -f Makefile install cd SDL_mixer; $(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 - cd smpeg; $(MAKE) -f Makefile install