From 43dac50e75dd5b13fe67280f1d14c7a09e3a283e Mon Sep 17 00:00:00 2001 From: dborth Date: Tue, 4 Aug 2009 20:51:04 +0000 Subject: [PATCH] add missing mixer --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 05a5638..4ab595b 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,7 @@ all: cd SDL; $(MAKE) -f Makefile cd SDL_gfx; $(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 @@ -9,6 +10,7 @@ all: clean: cd SDL; $(MAKE) -f Makefile clean cd SDL_gfx; $(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 @@ -17,6 +19,7 @@ clean: install: cd SDL; $(MAKE) -f Makefile install cd SDL_gfx; $(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