File: make.regression

package info (click to toggle)
gpsim 0.22.0-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 7,536 kB
  • ctags: 12,443
  • sloc: cpp: 69,959; sh: 8,626; asm: 7,706; ansic: 4,101; lex: 1,125; makefile: 1,094; yacc: 760
file content (24 lines) | stat: -rw-r--r-- 396 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Top-level make file included by all of the regression test makefiles

ifdef GPSIM_PATH
  PATH := $(GPSIM_PATH):$(PATH)
else
  PATH := ../../gpsim:$(PATH)
endif

ifdef EXTENDED_INSTRUCTIONS
  ASM_FLAGS = -c --extended
else
  ASM_FLAGS = -c
endif

GPSIM = gpsim

%.o : %.asm
	gpasm $(ASM_FLAGS) $<

# Each regression test has a target 'all'
top: all

clean:
	rm -f *~ *.o *.lst *.map *.hex *.cod