New bitmap method SetRGBConversionFunction which can be used to
[tangerine.git] / arch / all-unix / dos / mmakefile.src
blob2624e0701c80b91e0906d6f64622d1d7b2c4d0e9
1 # $Id$
2 include $(TOP)/config/make.cfg
4 USER_INCLUDES   := -I$(GENINCDIR)
5 USER_CFLAGS     := -I$(TOP)/rom/dos -I..
6 %build_archspecific \
7   mainmmake=kernel-dos maindir=rom/dos \
8   arch=unix \
9   files="boot runprocess" \
10   compiler=host
12 TESTS           := runprocess
14 #MM
15 clean::
16         $(RM) $(TESTS)
18 check : $(TESTS)
19         @$(NOP)
21 runprocess : runprocess.c ../exec/stackswap.c
22         $(CC) -DTEST -DNO_MAIN $(CFLAGS) -c ../exec/stackswap.c -o ss.o
23         $(CC) -DTEST $(CFLAGS) $< ss.o -o $@
24         $(RM) ss.o
26 %common