Subversion Repositories NedoOS

Rev

Rev 922 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log

Rev 922 Rev 930
Line 1... Line 1...
1
# Supported environments:
1
# Supported environments:
2
#   GNU/Linux
2
#   GNU/Linux.
-
 
3
#
3
#   Windows NT
4
# Tools used:
-
 
5
#   GNU core utilities, tools/aspp, tools/sjasmplus.
4
 
6
 
5
include ../../_sdk/common.mk
7
include ../../_sdk/common.mk
6
 
8
 
7
# no trailing "/"
9
NAME		= eric.com
-
 
10
OBJECTS		=
-
 
11
SOURCES		= main.asm
-
 
12
RESOURCES	= eric/ericgfx.bmp
-
 
13
DOCS		=
-
 
14
INSTALLDIR	?= ../../../release/nedogame
-
 
15
BIN_INSTALLDIR	= ${INSTALLDIR}
-
 
16
RES_INSTALLDIR	= ${INSTALLDIR}/eric
8
INSTALLDIR	:= $(INSTALLDIR)nedogame
17
DOC_INSTALLDIR	= ${INSTALLDIR}/doc
-
 
18
 
-
 
19
# All targets
-
 
20
TARGETS=executables resources
-
 
21
.PHONY: empty ${foreach t,${TARGETS},${t} install-${t} clean-${t}} all install install-doc clean
-
 
22
 
-
 
23
.DEFAULT_GOAL=all
9
 
24
 
-
 
25
empty:
-
 
26
	@echo 'Usage: make [ TARGET | ACTION-TARGET | all | install | install-doc | clean ]'
10
.PHONY: install clean
27
	@echo 'where ACTION is one of: install clean'
-
 
28
	@echo '      TARGET is one of: ${TARGETS}'
-
 
29
 
-
 
30
# Clear lists
-
 
31
DEPS=
11
 
32
 
-
 
33
# Create directories
-
 
34
${sort \
12
eric.com: main.asm \
35
${BIN_INSTALLDIR} \
13
 ../../_sdk/file.asm \
36
${RES_INSTALLDIR} \
14
 ../../_sdk/sys_h.asm \
37
${DOC_INSTALLDIR} \
-
 
38
}:
-
 
39
	mkdir -p $@
-
 
40
 
-
 
41
##########################
15
 ../../_sdk/sysdefs.asm \
42
## Target "executables" ##
-
 
43
##########################
-
 
44
 
16
 eric1.asm \
45
EXEC_DEPS=
17
 ericmuz.bin
46
EXEC_BINS=
-
 
47
 
-
 
48
${eval ${call sjasmplus_odd_rule,${NAME},${SOURCES},,EXEC_DEPS,EXEC_BINS}}
-
 
49
 
-
 
50
executables: ${EXEC_BINS}
-
 
51
 
-
 
52
install-executables: executables | ${BIN_INSTALLDIR}
18
	$(AS) $(AFLAGS) $<
53
	cp ${EXEC_BINS} $|
19
 
54
 
20
install: \
55
clean-executables:
-
 
56
	${RM} ${EXEC_DEPS} ${EXEC_BINS}
-
 
57
 
21
 $(INSTALLDIR) \
58
DEPS+=${EXEC_DEPS}
-
 
59
 
-
 
60
########################
22
 $(INSTALLDIR)/eric.com \
61
## Target "resources" ##
-
 
62
########################
-
 
63
 
23
 $(INSTALLDIR)/eric \
64
resources: ${RESOURCES}
-
 
65
 
-
 
66
install-resources: resources | ${RES_INSTALLDIR}
24
 $(INSTALLDIR)/eric/ericgfx.bmp
67
ifneq "${sort ${RESOURCES}}" ""
-
 
68
	cp ${RESOURCES} $|
-
 
69
endif
25
 
70
 
26
$(INSTALLDIR) \
71
clean-resources:
-
 
72
 
27
 $(INSTALLDIR)/eric:
73
####################
28
	$(MKDIR) $@
74
## Common targets ##
-
 
75
####################
29
 
76
 
30
$(INSTALLDIR)/eric.com: eric.com
77
all: executables resources
-
 
78
 
-
 
79
install: install-executables install-resources
-
 
80
 
-
 
81
ifeq "${sort ${DOCS}}" ""
-
 
82
install-doc:
-
 
83
else
-
 
84
install-doc: ${DOCS} | ${DOC_INSTALLDIR}
31
	$(CP) $< $@
85
	cp $^ $|
-
 
86
endif
32
 
87
 
33
$(INSTALLDIR)/eric/ericgfx.bmp: eric/ericgfx.bmp
88
clean: clean-executables clean-resources
-
 
89
 
-
 
90
##################
34
	$(CP) $< $@
91
## Dependencies ##
-
 
92
##################
35
 
93
 
-
 
94
ifneq "${sort \
-
 
95
${filter empty,${MAKECMDGOALS}} \
-
 
96
${filter clean,${MAKECMDGOALS}} \
-
 
97
${filter clean-%,${MAKECMDGOALS}} \
-
 
98
}" ""
36
clean:
99
else
-
 
100
# FIXME: Triggered when multiple targets specified.
37
	$(RM) eric.com
101
include ${DEPS}
-
 
102
endif