xref: /illumos-gate/usr/src/data/Makefile (revision 7e3dbbac48aaad67ac841ba479a67a2081d6a02b)
1503609a9SYuri Pankov#
2503609a9SYuri Pankov# This file and its contents are supplied under the terms of the
3503609a9SYuri Pankov# Common Development and Distribution License ("CDDL"), version 1.0.
4503609a9SYuri Pankov# You may only use this file in accordance with the terms of version
5503609a9SYuri Pankov# 1.0 of the CDDL.
6503609a9SYuri Pankov#
7503609a9SYuri Pankov# A full copy of the text of the CDDL should have accompanied this
8503609a9SYuri Pankov# source.  A copy of the CDDL is also available via the Internet at
9503609a9SYuri Pankov# http://www.illumos.org/license/CDDL.
10503609a9SYuri Pankov#
11503609a9SYuri Pankov
12503609a9SYuri Pankov#
13503609a9SYuri Pankov# Copyright 2017 Nexenta Systems, Inc.
14503609a9SYuri Pankov#
15503609a9SYuri Pankov
16*7e3dbbacSRobert MustacchiCOMMON_SUBDIRS=	consfonts \
174b529e40SToomas Soome		hwdata \
18503609a9SYuri Pankov		locale \
19503609a9SYuri Pankov		terminfo \
20503609a9SYuri Pankov		zoneinfo
21503609a9SYuri Pankov
22*7e3dbbacSRobert Mustacchii386_SUBDIRS=	perfmon
23*7e3dbbacSRobert Mustacchi
24*7e3dbbacSRobert MustacchiSUBDIRS = $(COMMON_SUBDIRS) $($(MACH)_SUBDIRS)
25*7e3dbbacSRobert Mustacchi
26503609a9SYuri PankovMSGSUBDIRS= 	zoneinfo
27503609a9SYuri Pankov
28503609a9SYuri Pankovall :=		TARGET=all
29503609a9SYuri Pankovclean :=	TARGET=clean
30503609a9SYuri Pankovclobber :=	TARGET=clobber
31503609a9SYuri Pankovinstall :=	TARGET=install
32503609a9SYuri Pankov_msg :=		TARGET=_msg
33503609a9SYuri Pankov
34503609a9SYuri Pankov.KEEP_STATE:
35503609a9SYuri Pankov
36503609a9SYuri Pankovall clean clobber install: $(SUBDIRS)
37503609a9SYuri Pankov
38503609a9SYuri Pankov_msg:		$(MSGSUBDIRS)
39503609a9SYuri Pankov
40503609a9SYuri Pankov$(SUBDIRS):	FRC
41503609a9SYuri Pankov		cd $@; pwd; $(MAKE) $(TARGET)
42503609a9SYuri Pankov
43503609a9SYuri PankovFRC:
44