forked from roman5566/fat-xenon
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMakefile
118 lines (81 loc) · 2.59 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
ifeq ($(strip $(DEVKITXENON)),)
$(error "Please set DEVKITXENON in your environment. export DEVKITXENON=<path to>devkitPPC")
endif
include $(DEVKITXENON)/rules
export TOPDIR := $(CURDIR)
export LIBFAT_MAJOR := 1
export LIBFAT_MINOR := 0
export LIBFAT_PATCH := 11
export VERSTRING := $(LIBFAT_MAJOR).$(LIBFAT_MINOR).$(LIBFAT_PATCH)
#default: release
default: all
#all: release dist
all: xenon-release
release: include/libfatversion.h nds-release gba-release cube-release wii-release
ogc-release: cube-release wii-release
nds-release:
$(MAKE) -C nds BUILD=release
gba-release:
$(MAKE) -C gba BUILD=release
cube-release:
$(MAKE) -C libogc PLATFORM=cube BUILD=cube_release
wii-release:
$(MAKE) -C libogc PLATFORM=wii BUILD=wii_release
xenon-release:
$(MAKE) -C libxenon PLATFORM=xenon BUILD=xenon_release
#debug: nds-debug gba-debug cube-debug wii-debug
debug:
ogc-debug: cube-debug wii-debug
nds-debug:
$(MAKE) -C nds BUILD=debug
gba-debug:
$(MAKE) -C gba BUILD=debug
cube-debug:
$(MAKE) -C libogc PLATFORM=cube BUILD=wii_debug
wii-debug:
$(MAKE) -C libogc PLATFORM=wii BUILD=cube_debug
#clean: nds-clean gba-clean ogc-clean
clean:
$(MAKE) -C libxenon clean
nds-clean:
$(MAKE) -C nds clean
gba-clean:
$(MAKE) -C gba clean
ogc-clean:
$(MAKE) -C libogc clean
dist-bin: nds-dist-bin gba-dist-bin ogc-dist-bin
nds-dist-bin: nds-release distribute/$(VERSTRING)
$(MAKE) -C nds dist-bin
gba-dist-bin: gba-release distribute/$(VERSTRING)
$(MAKE) -C gba dist-bin
ogc-dist-bin: ogc-release distribute/$(VERSTRING)
$(MAKE) -C libogc dist-bin
dist-src: distribute/$(VERSTRING)
@tar --exclude=.svn --exclude=*CVS* -cvjf distribute/$(VERSTRING)/libfat-src-$(VERSTRING).tar.bz2 \
source include Makefile \
nds/Makefile nds/include \
gba/Makefile gba/include \
libogc/Makefile libogc/include
dist: include/libfatversion.h dist-bin dist-src
distribute/$(VERSTRING):
@[ -d $@ ] || mkdir -p $@
include/libfatversion.h : Makefile
@echo "#ifndef __LIBFATVERSION_H__" > $@
@echo "#define __LIBFATVERSION_H__" >> $@
@echo >> $@
@echo "#define _LIBFAT_MAJOR_ $(LIBFAT_MAJOR)" >> $@
@echo "#define _LIBFAT_MINOR_ $(LIBFAT_MINOR)" >> $@
@echo "#define _LIBFAT_PATCH_ $(LIBFAT_PATCH)" >> $@
@echo >> $@
@echo '#define _LIBFAT_STRING "libFAT Release '$(LIBFAT_MAJOR).$(LIBFAT_MINOR).$(LIBFAT_PATCH)'"' >> $@
@echo >> $@
@echo "#endif // __LIBFATVERSION_H__" >> $@
#install: nds-install gba-install ogc-install
install:
$(MAKE) -C libxenon install
nds-install: nds-release
$(MAKE) -C nds install
gba-install: gba-release
$(MAKE) -C gba install
ogc-install: cube-release wii-release
$(MAKE) -C libogc install