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