Makefile 1.4 KB
#!gmake 

ifndef SIMTOOLS
SIMTOOLS = ..
endif

include $(SIMTOOLS)/makedefs

simos:
	(cd misc;    $(MAKE) )
	(cd stats;   $(MAKE) )
	(cd tcl;     $(MAKE) )
	(cd symbols; $(MAKE) )
ifndef NO_EMBRA
	(cd dcg_support; $(MAKE))
endif

simos64:
	(cd misc;    $(MAKE) simos64)
	(cd stats;   $(MAKE) simos64)
	(cd tcl;     $(MAKE) simos64)
	(cd symbols; $(MAKE) simos64)
ifndef NO_EMBRA
	(cd dcg_support; $(MAKE) simos64)
endif

simos-x86:
	(cd misc;    $(MAKE) simos-x86)
	(cd stats;   $(MAKE) simos-x86)
	(cd tcl;     $(MAKE) simos-x86)
	(cd symbols; $(MAKE) simos-x86)

solo:
	(cd misc;    $(MAKE) solo)
	(cd stats;   $(MAKE) solo)
	(cd tcl;     $(MAKE) solo)
	(cd symbols; $(MAKE) solo)

solo-aint:
	(cd misc;    $(MAKE) solo)
	(cd stats;   $(MAKE) solo)
	(cd tcl;     $(MAKE) solo)
	(cd symbols; $(MAKE) solo)

simos-aa:
	(cd misc;    $(MAKE) simos-aa )
	(cd stats;   $(MAKE) simos-aa )
	(cd tcl;     $(MAKE) simos-aa )
	(cd symbols; $(MAKE) simos-aa )
	(cd dcg_support; $(MAKE) simos-aa)

clean:
	(cd misc &&  $(MAKE) -f Makefile clean)
	(cd stats && $(MAKE) -f Makefile clean)
	(cd tcl &&   $(MAKE) -f Makefile clean)
	(cd symbols && $(MAKE) -f Makefile clean)
	(cd dcg_support && $(MAKE) -f Makefile clean)

clobber:
	(cd misc;    $(MAKE) -f Makefile clobber)
	(cd stats;   $(MAKE) -f Makefile clobber)
	(cd tcl;     $(MAKE) -f Makefile clobber)
	(cd symbols; $(MAKE) -f Makefile clobber)
	(cd dcg_support; $(MAKE) -f Makefile clobber)