add global makefile :)
This commit is contained in:
parent
f8bd910f08
commit
a191ec38ae
20
Makefile
Normal file
20
Makefile
Normal file
|
@ -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
|
Reference in a new issue