struct / union in initializer, RFE #901.
[sdcc.git] / sdcc / support / regression / ports / stm8 / spec.mk
blobd000784c55d5849280a8941f1a1a88724d483881
1 # Regression test specification for the stm8 target running with uCsim
3 EMU_PORT_FLAG =
5 # path to uCsim
6 ifdef SDCC_BIN_PATH
7 UCSTM8C = $(SDCC_BIN_PATH)/ucsim_stm8$(EXEEXT)
9 AS_STM8C = $(SDCC_BIN_PATH)/sdasstm8$(EXEEXT)
10 else
11 ifdef UCSIM_DIR
12 UCSTM8A = $(UCSIM_DIR)/stm8.src/ucsim_stm8$(EXEEXT)
13 else
14 UCSTM8A = $(top_builddir)/sim/ucsim/src/sims/stm8.src/ucsim_stm8$(EXEEXT)
15 UCSTM8B = $(top_builddir)/bin/ucsim_stm8$(EXEEXT)
16 endif
18 EMU = $(WINE) $(shell if [ -f $(UCSTM8A) ]; then echo $(UCSTM8A); else echo $(UCSTM8B); fi)
20 AS = $(WINE) $(top_builddir)/bin/sdasstm8$(EXEEXT)
22 ifndef CROSSCOMPILING
23 SDCCFLAGS += --nostdinc -I$(top_srcdir)
24 LINKFLAGS += --nostdlib -L$(top_builddir)/device/lib/build/stm8
25 endif
26 endif
28 ifdef CROSSCOMPILING
29 SDCCFLAGS += -I$(top_srcdir)
30 endif
32 SDCCFLAGS += -mstm8 --less-pedantic --out-fmt-ihx
33 LINKFLAGS += stm8.lib
35 OBJEXT = .rel
36 BINEXT = .ihx
38 # otherwise `make` deletes testfwk.rel and `make -j` will fail
39 .PRECIOUS: $(PORT_CASES_DIR)/%$(OBJEXT)
41 # Required extras
42 EXTRAS = $(PORT_CASES_DIR)/testfwk$(OBJEXT) $(PORT_CASES_DIR)/support$(OBJEXT)
43 include $(srcdir)/fwk/lib/spec.mk
45 %$(OBJEXT): %.asm
46 $(AS) -plosgff $<
48 _clean: