File: Makefile

package info (click to toggle)
xa 2.4.1-0.1
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,356 kB
  • sloc: ansic: 8,585; asm: 845; makefile: 755; perl: 116; sh: 53
file content (21 lines) | stat: -rw-r--r-- 324 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

XA=../../xa
OBJS=test1.u test2.u test3.u test4.u test5.u test6.u test6a.u test6b.u test7.u

all: $(OBJS)

clean:
	rm -f a.o65 $(OBJS)

#%: %.a65 %.o65
#	${XA} -XC $< -o $@
#	../hextool -cmp=$@.o65 < $@

# BSD make only understands suffix rules

.SUFFIXES: .u .a65

.a65.u:
	${XA} -XC $< -o $@
	../hextool -cmp=$*.o65 < $@