-
Notifications
You must be signed in to change notification settings - Fork 16
/
Makefile
26 lines (24 loc) · 837 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
all:
cd SDL; $(MAKE) -f Makefile
cd SDL_gfx; $(MAKE) -f Makefile
cd smpeg; $(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
clean:
cd SDL; $(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_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 smpeg; $(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