build infplane for all targets .. only use the asm where supported.
[AROS-Contrib.git] / Demo / InfPlane / mmakefile.src
blobc213973c0e288389f8b0d17b6efc2de82760e762
2 include $(SRCDIR)/config/aros-contrib.cfg
4 #MM- demo-infplane : demo-infplane-binary demo-infplane-icons demo-infplane-data
6 DESTDIR         := $(AROS_CONTRIB)/Demos/InfPlane
8 ifneq (,$(findstring x86_64,$(AROS_TARGET_CPU)))
9 INFPLANE_ASM += refresh-i386
10 else
11 ifneq (,$(findstring i386,$(AROS_TARGET_CPU)))
12 INFPLANE_ASM += refresh-i386
13 else
14 USER_CFLAGS += -DC_FUNCTION
15 endif
16 endif
18 %build_prog mmake=demo-infplane-binary \
19     progname=InfPlane targetdir=$(DESTDIR) \
20     files=infplane asmfiles=$(INFPLANE_ASM)
22 DATAFILES       := pattern.data pattern.pal
24 %copy_files_q mmake=demo-infplane-data files=$(DATAFILES) dst=$(DESTDIR)
26 %common