reorder makefile for dependencies
This commit is contained in:
parent
3a513cffbd
commit
c3529e7cfe
6
Makefile
6
Makefile
|
@ -1,26 +1,26 @@
|
||||||
all:
|
all:
|
||||||
cd SDL; $(MAKE) -f Makefile
|
cd SDL; $(MAKE) -f Makefile
|
||||||
cd SDL_gfx; $(MAKE) -f Makefile
|
cd SDL_gfx; $(MAKE) -f Makefile
|
||||||
|
cd smpeg; $(MAKE) -f Makefile
|
||||||
cd SDL_mixer; $(MAKE) -f Makefile
|
cd SDL_mixer; $(MAKE) -f Makefile
|
||||||
cd SDL_image; $(MAKE) -f Makefile
|
cd SDL_image; $(MAKE) -f Makefile
|
||||||
cd SDL_net; $(MAKE) -f Makefile
|
cd SDL_net; $(MAKE) -f Makefile
|
||||||
cd SDL_ttf; $(MAKE) -f Makefile
|
cd SDL_ttf; $(MAKE) -f Makefile
|
||||||
cd smpeg; $(MAKE) -f Makefile
|
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
cd SDL; $(MAKE) -f Makefile clean
|
cd SDL; $(MAKE) -f Makefile clean
|
||||||
cd SDL_gfx; $(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_mixer; $(MAKE) -f Makefile clean
|
||||||
cd SDL_image; $(MAKE) -f Makefile clean
|
cd SDL_image; $(MAKE) -f Makefile clean
|
||||||
cd SDL_net; $(MAKE) -f Makefile clean
|
cd SDL_net; $(MAKE) -f Makefile clean
|
||||||
cd SDL_ttf; $(MAKE) -f Makefile clean
|
cd SDL_ttf; $(MAKE) -f Makefile clean
|
||||||
cd smpeg; $(MAKE) -f Makefile clean
|
|
||||||
|
|
||||||
install:
|
install:
|
||||||
cd SDL; $(MAKE) -f Makefile install
|
cd SDL; $(MAKE) -f Makefile install
|
||||||
cd SDL_gfx; $(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_mixer; $(MAKE) -f Makefile install
|
||||||
cd SDL_image; $(MAKE) -f Makefile install
|
cd SDL_image; $(MAKE) -f Makefile install
|
||||||
cd SDL_net; $(MAKE) -f Makefile install
|
cd SDL_net; $(MAKE) -f Makefile install
|
||||||
cd SDL_ttf; $(MAKE) -f Makefile install
|
cd SDL_ttf; $(MAKE) -f Makefile install
|
||||||
cd smpeg; $(MAKE) -f Makefile install
|
|
||||||
|
|
Reference in a new issue