Makefile
494 Bytes
#!gmake
ifndef SIMTOOLS
SIMTOOLS = ../..
endif
include $(SIMTOOLS)/makedefs
default: simos-$(CPU)
include $(SIMTOOLS)/Makefile.Std
simos.debug: simos.debug-dir
@$(MAKE) -f ../Makefile.$(CPU) -C SIMOSDEBUG SIMOSDEBUG=1
debugtrans: debugtrans-dir
@$(MAKE) -f ../Makefile.$(CPU) -C SIMOSTRANSDEBUG SIMOSTRANSDEBUG=1
simos.debug-dir:
@if [ -d SIMOSDEBUG ] ; then true; else mkdir SIMOSDEBUG; fi
debugtrans-dir:
@if [ -d SIMOSTRANSDEBUG ] ; then true; else mkdir SIMOSTRANSDEBUG; fi