-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathexperiments.makefile
More file actions
42 lines (30 loc) · 873 Bytes
/
Copy pathexperiments.makefile
File metadata and controls
42 lines (30 loc) · 873 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
38
39
40
41
42
# default target
default: compile
# commands and tools
include config.makefile
# packer; must match the included unpacker routine
PACK_EXTENSION=zx0
#
# paths and file lists
#
ROM=\
games\experiments\fsjh1test\fsjh1test.rom
SYM=\
games\experiments\fsjh1test\fsjh1test.sym
SHARED_DATAS=\
games\examples\shared\charset.png.chr.$(PACK_EXTENSION) \
games\examples\shared\charset.png.clr.$(PACK_EXTENSION) \
games\experiments\shared\sprites.png.spr.$(PACK_EXTENSION)
SHARED_DATAS_INTERMEDIATE=\
games\examples\shared\charset.png.chr \
games\examples\shared\charset.png.clr \
games\experiments\shared\sprites.png.spr
#
# targets
#
# default targets
include msxlib.makefile
games\experiments\fsjh1test\fsjh1test.rom: games\experiments\fsjh1test\fsjh1test.asm $(MSXLIB) $(SHARED_DATAS)
$(ASM) $< $@
# secondary targets
.secondary: $(SHARED_DATAS_INTERMEDIATE)