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
 
-
 
9
NAME		= smb.com
-
 
10
OBJECTS		=
7
# no trailing "/"
11
SOURCES		= main.asm
-
 
12
RESOURCES	=
-
 
13
DOCS		=
-
 
14
INSTALLDIR	?= ../../../release/nedogame
-
 
15
BIN_INSTALLDIR	= ${INSTALLDIR}
-
 
16
RES_INSTALLDIR	= ${INSTALLDIR}
8
INSTALLDIR	:= $(INSTALLDIR)nedogame
17
DOC_INSTALLDIR	= ${INSTALLDIR}/doc
9
 
18
 
10
.PHONY: install clean
19
# All targets
-
 
20
TARGETS=executables resources
-
 
21
.PHONY: empty ${foreach t,${TARGETS},${t} install-${t} clean-${t}} all install install-doc clean
11
 
22
 
12
smb.com: main.asm \
23
.DEFAULT_GOAL=all
-
 
24
 
-
 
25
empty:
-
 
26
	@echo 'Usage: make [ TARGET | ACTION-TARGET | all | install | install-doc | clean ]'
13
 ../../_sdk/file.asm \
27
	@echo 'where ACTION is one of: install clean'
-
 
28
	@echo '      TARGET is one of: ${TARGETS}'
-
 
29
 
14
 ../../_sdk/sys_h.asm \
30
# Clear lists
-
 
31
DEPS=
-
 
32
 
15
 ../../_sdk/sysdefs.asm \
33
# Create directories
16
 6502fast.asm \
34
${sort \
17
 SMBDIS.ASM \
35
${BIN_INSTALLDIR} \
18
 nesconst.asm \
36
${RES_INSTALLDIR} \
19
 smbconst.asm \
37
${DOC_INSTALLDIR} \
-
 
38
}:
20
 smbmusic.asm \
39
	mkdir -p $@
-
 
40
 
-
 
41
##########################
21
 smbsound.asm \
42
## Target "executables" ##
-
 
43
##########################
-
 
44
 
-
 
45
EXEC_DEPS=
22
 tileattr.asm
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}
23
	$(AS) $(AFLAGS) $<
53
	cp ${EXEC_BINS} $|
24
 
54
 
25
install: \
55
clean-executables:
-
 
56
	${RM} ${EXEC_DEPS} ${EXEC_BINS}
-
 
57
 
26
 $(INSTALLDIR) \
58
DEPS+=${EXEC_DEPS}
-
 
59
 
-
 
60
########################
27
 $(INSTALLDIR)/smb.com \
61
## Target "resources" ##
28
 $(INSTALLDIR)/antipac.fm2
62
########################
29
 
63
 
30
$(INSTALLDIR):
64
resources: ${RESOURCES}
-
 
65
 
-
 
66
install-resources: resources | ${RES_INSTALLDIR}
-
 
67
ifneq "${sort ${RESOURCES}}" ""
31
	$(MKDIR) $@
68
	cp ${RESOURCES} $|
-
 
69
endif
-
 
70
 
-
 
71
clean-resources:
-
 
72
 
-
 
73
####################
-
 
74
## Common targets ##
-
 
75
####################
32
 
76
 
33
$(INSTALLDIR)/smb.com: smb.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}
34
	$(CP) $< $@
85
	cp $^ $|
-
 
86
endif
35
 
87
 
36
$(INSTALLDIR)/antipac.fm2: antipac.fm2
88
clean: clean-executables clean-resources
-
 
89
 
-
 
90
##################
37
	$(CP) $< $@
91
## Dependencies ##
-
 
92
##################
38
 
93
 
-
 
94
ifneq "${sort \
-
 
95
${filter empty,${MAKECMDGOALS}} \
-
 
96
${filter clean,${MAKECMDGOALS}} \
-
 
97
${filter clean-%,${MAKECMDGOALS}} \
-
 
98
}" ""
39
clean:
99
else
-
 
100
# FIXME: Triggered when multiple targets specified.
40
	$(RM) smb.com
101
include ${DEPS}
-
 
102
endif