forked from Sammi-Husky/BrawlModules
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
37 lines (27 loc) · 836 Bytes
/
Makefile
File metadata and controls
37 lines (27 loc) · 836 Bytes
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
27
28
29
30
31
32
33
34
35
36
37
#---------------------------------------------------------------------------------
.SUFFIXES:
#---------------------------------------------------------------------------------
ifeq ($(strip $(DEVKITPRO)),)
$(error "Please set DEVKITPRO in your environment. export DEVKITPRO=<path to>/devkitpro")
endif
all: st_final.rel st_village.rel st_otrain.rel st_starfox.rel st_stadium.rel demos
demos: st_demo.rel
st_final.rel:
@cd st_final && make
st_demo.rel:
@cd demos/st_demo && make
st_village.rel:
@cd st_village && make
st_otrain.rel:
@cd st_otrain && make
st_starfox.rel:
@cd st_starfox && make
st_stadium.rel:
@cd st_stadium && make
clean:
@cd st_final && make clean
@cd st_village && make clean
@cd demos/st_demo && make clean
@cd st_otrain && make clean
@cd st_starfox && make clean
@cd st_stadium && make clean