add missing mixer

This commit is contained in:
dborth 2009-08-04 20:51:04 +00:00
parent 9d9d253538
commit 43dac50e75

View file

@ -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