Fixed binary search: no more infinite loops when vendor is unknown.
[tangerine.git] / arch / i386-darwin / dos / mmakefile.src
blobded08479d33990237c0e9c50fc0c789fbdfc7133
1 # $Id$
2 include $(TOP)/config/make.cfg
4 # Architecture-dependant files dosboot.c and aros.c are removed
5 # Nothing left here, so the whole thing is commented out.
6 # Revisit or remove this file. - Pavel Fedin <sonic_amiga@rambler.ru>
8 #USER_INCLUDES  := -I$(GENINCDIR)
9 #USER_CFLAGS    := -I$(TOP)/rom/dos -I..
10 #%build_archspecific \
11 #  mainmmake=kernel-dos maindir=rom/dos \
12 #  arch=darwin files="dosboot aros"
14 TESTS           := runprocess
16 #MM
17 clean::
18         $(RM) $(TESTS)
20 check : $(TESTS)
21         @$(NOP)
23 runprocess : runprocess.c ../exec/stackswap.c
24         $(CC) -DTEST -DNO_MAIN $(CFLAGS) -c ../exec/stackswap.c -o ss.o
25         $(CC) -DTEST $(CFLAGS) $< ss.o -o $@
26         $(RM) ss.o
28 %common