This repository has been archived on 2023-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
sdl-wii/Makefile

27 lines
837 B
Makefile
Raw Normal View History

2009-06-03 18:30:46 -04:00
all:
cd SDL; $(MAKE) -f Makefile
cd SDL_gfx; $(MAKE) -f Makefile
2009-08-04 16:51:04 -04:00
cd SDL_mixer; $(MAKE) -f Makefile
2009-06-03 18:30:46 -04:00
cd SDL_image; $(MAKE) -f Makefile
cd SDL_net; $(MAKE) -f Makefile
cd SDL_ttf; $(MAKE) -f Makefile
2009-08-04 01:44:43 -04:00
cd smpeg; $(MAKE) -f Makefile
2009-06-03 18:30:46 -04:00
clean:
cd SDL; $(MAKE) -f Makefile clean
cd SDL_gfx; $(MAKE) -f Makefile clean
2009-08-04 16:51:04 -04:00
cd SDL_mixer; $(MAKE) -f Makefile clean
2009-06-03 18:30:46 -04:00
cd SDL_image; $(MAKE) -f Makefile clean
cd SDL_net; $(MAKE) -f Makefile clean
cd SDL_ttf; $(MAKE) -f Makefile clean
2009-08-04 01:44:43 -04:00
cd smpeg; $(MAKE) -f Makefile clean
2009-06-03 18:30:46 -04:00
install:
cd SDL; $(MAKE) -f Makefile install
cd SDL_gfx; $(MAKE) -f Makefile install
2009-08-04 16:51:04 -04:00
cd SDL_mixer; $(MAKE) -f Makefile install
2009-06-03 18:30:46 -04:00
cd SDL_image; $(MAKE) -f Makefile install
cd SDL_net; $(MAKE) -f Makefile install
cd SDL_ttf; $(MAKE) -f Makefile install
2009-08-04 01:44:43 -04:00
cd smpeg; $(MAKE) -f Makefile install