-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile
35 lines (26 loc) · 1.16 KB
/
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
27
28
29
30
31
32
33
34
35
ifeq ($(strip $(DEVKITPRO)),)
$(error "Please set DEVKITPRO in your environment. export DEVKITPRO=<path to>devkitPro)
endif
export TOPDIR := $(CURDIR)
.PHONY: build clean all docs
all: build
#-------------------------------------------------------------------------------
build: lib
#-------------------------------------------------------------------------------
$(MAKE) -C arm9 || { exit 1;}
$(MAKE) -C arm7 || { exit 1;}
#-------------------------------------------------------------------------------
lib:
#-------------------------------------------------------------------------------
mkdir lib
#-------------------------------------------------------------------------------
clean:
#-------------------------------------------------------------------------------
@$(MAKE) -C arm9 clean
@$(MAKE) -C arm7 clean
#-------------------------------------------------------------------------------
#---------------------------------------------------------------------------------
docs:
#---------------------------------------------------------------------------------
doxygen Doxyfile
#---------------------------------------------------------------------------------