add missing mixer
This commit is contained in:
parent
9d9d253538
commit
43dac50e75
3
Makefile
3
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
|
||||
|
|
Reference in a new issue