Makefile
622 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
#!smake -k
#
# Makefile for gonogo audio assets
#
include $(ROOT)/usr/include/make/PRdefs
TARGETS = $(BANKFILES) $(TABLEFILES) $(SEQFILES)
MIDIFILES = gonogo1.mid noteLeft.mid noteRight.mid subway.mid
INSTFILES = gngBank.inst sfx.inst
SEQFILES = $(MIDIFILES:.mid=.seq)
BANKFILES=$(INSTFILES:.inst=.ctl)
TABLEFILES=$(INSTFILES:.inst=.tbl)
SYMFILES=$(INSTFILES:.inst=.sym)
LDIRT = gngBank.sym sfx.sym
default: $(TARGETS)
include $(COMMONRULES)
.SUFFIXES: .inst .ctl .tbl .mid .seq
.mid.seq:
$(MIDICVT) -s $< $*.seq
.inst.ctl:
$(IC) -o $* $<
.inst.tbl: # Dummy target for tables
@echo ''
banks: $(BANKFILES)