xref: /titanic_52/usr/src/cmd/ficl/Makefile (revision a1bf3f785ae05c419b339c3a2061f2b18c024f61)
1*a1bf3f78SToomas Soome#
2*a1bf3f78SToomas Soome# This file and its contents are supplied under the terms of the
3*a1bf3f78SToomas Soome# Common Development and Distribution License ("CDDL"), version 1.0.
4*a1bf3f78SToomas Soome# You may only use this file in accordance with the terms of version
5*a1bf3f78SToomas Soome# 1.0 of the CDDL.
6*a1bf3f78SToomas Soome#
7*a1bf3f78SToomas Soome# A full copy of the text of the CDDL should have accompanied this
8*a1bf3f78SToomas Soome# source.  A copy of the CDDL is also available via the Internet at
9*a1bf3f78SToomas Soome# http://www.illumos.org/license/CDDL.
10*a1bf3f78SToomas Soome#
11*a1bf3f78SToomas Soome
12*a1bf3f78SToomas Soome#
13*a1bf3f78SToomas Soome# Copyright 2016 Toomas Soome <tsoome@me.com>
14*a1bf3f78SToomas Soome#
15*a1bf3f78SToomas Soome# cmd/ficl/Makefile
16*a1bf3f78SToomas Soome#
17*a1bf3f78SToomas Soome
18*a1bf3f78SToomas SoomePROG=	ficl-sys
19*a1bf3f78SToomas Soome
20*a1bf3f78SToomas Soomeinclude ../Makefile.cmd
21*a1bf3f78SToomas Soome
22*a1bf3f78SToomas SoomeSUBDIRS=	$(MACH)
23*a1bf3f78SToomas Soome$(BUILD64)SUBDIRS += $(MACH64)
24*a1bf3f78SToomas Soome
25*a1bf3f78SToomas Soomeall	:=	TARGET = all
26*a1bf3f78SToomas Soomeinstall	:=	TARGET = install
27*a1bf3f78SToomas Soomeclean	:=	TARGET = clean
28*a1bf3f78SToomas Soomeclobber	:=	TARGET = clobber
29*a1bf3f78SToomas Soome
30*a1bf3f78SToomas Soome.KEEP_STATE:
31*a1bf3f78SToomas Soome
32*a1bf3f78SToomas Soomeall:	$(SUBDIRS)
33*a1bf3f78SToomas Soome
34*a1bf3f78SToomas Soomeclean clobber lint:	$(SUBDIRS)
35*a1bf3f78SToomas Soome
36*a1bf3f78SToomas Soomeinstall:	$(SUBDIRS)
37*a1bf3f78SToomas Soome	-$(RM) $(ROOTPROG)
38*a1bf3f78SToomas Soome	-$(LN) $(ISAEXEC) $(ROOTPROG)
39*a1bf3f78SToomas Soome
40*a1bf3f78SToomas Soome$(SUBDIRS):	FRC
41*a1bf3f78SToomas Soome	@cd $@; pwd; $(MAKE) $(TARGET)
42*a1bf3f78SToomas Soome
43*a1bf3f78SToomas SoomeFRC:
44*a1bf3f78SToomas Soome
45*a1bf3f78SToomas Soomeinclude ../Makefile.targ
46