new option -o
[fw/sdcc] / support / regression / ports / mcs51 / spec.mk
1 # Port specification for the mcs51 port running with uCsim
2 #
3 # model small
4
5 # path to uCsim
6 S51A = $(SDCC_DIR)/sim/ucsim/s51.src/s51
7 S51B = $(SDCC_DIR)/bin/s51
8
9 S51 = $(shell if [ -f $(S51A) ]; then echo $(S51A); else echo $(S51B); fi)
10
11 SDCCFLAGS +=--lesspedantic -DREENTRANT=reentrant --stack-after-data
12
13 OBJEXT = .rel
14 EXEEXT = .ihx
15
16 EXTRAS = fwk/lib/testfwk$(OBJEXT) $(PORTS_DIR)/$(PORT)/support$(OBJEXT)
17
18 # Rule to link into .ihx
19 %$(EXEEXT): %$(OBJEXT) $(EXTRAS)
20         $(SDCC) $(SDCCFLAGS) $(EXTRAS) $< -o $@
21
22 %$(OBJEXT): %.c
23         $(SDCC) $(SDCCFLAGS) -c $< -o $@
24
25 # run simulator with 10 seconds timeout
26 %.out: %$(EXEEXT) fwk/lib/timeout
27         mkdir -p `dirname $@`
28         -fwk/lib/timeout 10 $(S51) -t32 -S in=/dev/null,out=$@ $< < $(PORTS_DIR)/mcs51/uCsim.cmd >/dev/null \
29           || echo -e --- FAIL: \"timeout, simulation killed\" in $(<:$(EXEEXT)=.c)"\n"--- Summary: 1/1/1: timeout >> $@
30         -grep -n FAIL $@ /dev/null || true
31
32 fwk/lib/timeout: fwk/lib/timeout.c
33
34 _clean:
35         rm -f fwk/lib/timeout fwk/lib/timeout.exe $(PORTS_DIR)/$(PORT)/*.rel $(PORTS_DIR)/$(PORT)/*.rst \
36               $(PORTS_DIR)/$(PORT)/*.lst $(PORTS_DIR)/$(PORT)/*.sym $(PORTS_DIR)/$(PORT)/*.asm temp.lnk
37