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