1*4a5d661aSToomas Soome# 2*4a5d661aSToomas Soome# This file and its contents are supplied under the terms of the 3*4a5d661aSToomas Soome# Common Development and Distribution License ("CDDL"), version 1.0. 4*4a5d661aSToomas Soome# You may only use this file in accordance with the terms of version 5*4a5d661aSToomas Soome# 1.0 of the CDDL. 6*4a5d661aSToomas Soome# 7*4a5d661aSToomas Soome# A full copy of the text of the CDDL should have accompanied this 8*4a5d661aSToomas Soome# source. A copy of the CDDL is also available via the Internet at 9*4a5d661aSToomas Soome# http://www.illumos.org/license/CDDL. 10*4a5d661aSToomas Soome# 11*4a5d661aSToomas Soome 12*4a5d661aSToomas Soome# 13*4a5d661aSToomas Soome# Copyright 2016 Toomas Soome <tsoome@me.com> 14*4a5d661aSToomas Soome# 15*4a5d661aSToomas Soome 16*4a5d661aSToomas Soomeinclude $(SRC)/Makefile.master 17*4a5d661aSToomas Soome 18*4a5d661aSToomas SoomeSUBDIRS = softcore $(MACH) $(MACH64) 19*4a5d661aSToomas Soome 20*4a5d661aSToomas Soomeall := TARGET = all 21*4a5d661aSToomas Soomeinstall := TARGET = install 22*4a5d661aSToomas Soomeclean := TARGET = clean 23*4a5d661aSToomas Soomeclobber := TARGET = clobber 24*4a5d661aSToomas Soome 25*4a5d661aSToomas Soomeall install: $(SUBDIRS) 26*4a5d661aSToomas Soomeclean clobber: $(SUBDIRS) 27*4a5d661aSToomas Soome 28*4a5d661aSToomas Soome$(SUBDIRS): FRC 29*4a5d661aSToomas Soome @cd $@; pwd; $(MAKE) $(MFLAGS) $(TARGET) 30*4a5d661aSToomas Soome 31*4a5d661aSToomas SoomeFRC: 32