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 2015 Toomas Soome <tsoome@me.com> 14*4a5d661aSToomas Soome# 15*4a5d661aSToomas Soome 16*4a5d661aSToomas Soome.KEEP_STATE: 17*4a5d661aSToomas Soome 18*4a5d661aSToomas Soomeinclude ../Makefile.master 19*4a5d661aSToomas Soome 20*4a5d661aSToomas SoomeSUBDIRS = sys/boot 21*4a5d661aSToomas Soome 22*4a5d661aSToomas Soomeall := TARGET = all 23*4a5d661aSToomas Soomeinstall := TARGET = install 24*4a5d661aSToomas Soomeclean := TARGET = clean 25*4a5d661aSToomas Soomeclobber := TARGET = clobber 26*4a5d661aSToomas Soome 27*4a5d661aSToomas Soomeall install clean clobber: $(SUBDIRS) 28*4a5d661aSToomas Soome 29*4a5d661aSToomas Soome$(SUBDIRS): FRC 30*4a5d661aSToomas Soome @cd $@; pwd; $(MAKE) $(MFLAGS) $(TARGET) 31*4a5d661aSToomas Soome 32*4a5d661aSToomas SoomeFRC: 33