Pick three bugfixes from next branch to trunk for inclusion in 4.5.0 RC2, as discusse...
[sdcc.git] / sdcc / support / tests / dhrystone / tini.mak
blob2a7eee0c8a0d21d15258b75c3e43a38851a1f22b
1 CC = sdcc
3 MFLAGS = -mds390 --model-flat24 --stack-10bit
4 MFLAGS += -DREG= -DNOSTRUCTASSIGN -DNOENUM
5 LFLAGS = --xram-loc 0x100080 --code-loc 0x10000 -Wl-r
7 OBJECTS = dhry.rel
9 all: dhry.hex
11 clean:
12 rm -f *~ \#* *.asm *.cdb *.rel *.hex *.ihx *.lst *.map *.rst *.sym *.lnk
14 dhry.hex: dhry.ihx
15 packihx dhry.ihx >dhry.hex
17 dhry.ihx: $(OBJECTS)
18 $(CC) $(MFLAGS) $(LFLAGS) $(OBJECTS)
20 %.rel: %.c
21 $(CC) -c $(MFLAGS) $<