xref: /titanic_52/usr/src/cmd/ast/Makefile (revision 906afcb89d0412cc073b95c2d701a804a8cdb62c)
1da2e3ebdSchin#
2*906afcb8SAndy Fiddaman# This file and its contents are supplied under the terms of the
3*906afcb8SAndy Fiddaman# Common Development and Distribution License ("CDDL"), version 1.0.
4*906afcb8SAndy Fiddaman# You may only use this file in accordance with the terms of version
5*906afcb8SAndy Fiddaman# 1.0 of the CDDL.
6da2e3ebdSchin#
7*906afcb8SAndy Fiddaman# A full copy of the text of the CDDL should have accompanied this
8*906afcb8SAndy Fiddaman# source.  A copy of the CDDL is also available via the Internet at
9*906afcb8SAndy Fiddaman# http://www.illumos.org/license/CDDL.
10da2e3ebdSchin#
11da2e3ebdSchin
12*906afcb8SAndy Fiddaman#
13*906afcb8SAndy Fiddaman# Copyright 2021 OmniOS Community Edition (OmniOSce) Association.
14*906afcb8SAndy Fiddaman#
15da2e3ebdSchin
16*906afcb8SAndy Fiddaman# Note that these AST components deliver installed headers to /usr/include/ast/
17*906afcb8SAndy Fiddaman# but nothing else in gate depends on these to build, and serveral of them are
18*906afcb8SAndy Fiddaman# auto-generated. The install_h target is deliberately not wired into
19*906afcb8SAndy Fiddaman# 'cmdheaders' in usr/src/Makefile as that would significantly increase the
20*906afcb8SAndy Fiddaman# time taken to run the 'setup' target. Instead, sub-components automatically
21*906afcb8SAndy Fiddaman# install header files as part of the 'install' target.
22da2e3ebdSchin
23*906afcb8SAndy Fiddamaninclude $(SRC)/Makefile.master
24da2e3ebdSchin
25da2e3ebdSchinall :=		TARGET= all
26da2e3ebdSchinclean :=	TARGET= clean
27da2e3ebdSchinclobber :=	TARGET= clobber
28*906afcb8SAndy Fiddaman_msg :=		TARGET= _msg
29*906afcb8SAndy Fiddamaninstall :=	TARGET= install
30*906afcb8SAndy Fiddamaninstall_h :=	TARGET= install_h
31*906afcb8SAndy Fiddaman# The _feature target is used to initially populate and to update the
32*906afcb8SAndy Fiddaman# FEATURE files for each component. It is not run as part of a normal
33*906afcb8SAndy Fiddaman# build.
34*906afcb8SAndy Fiddaman_feature :=	TARGET= _feature install
35*906afcb8SAndy Fiddaman
36*906afcb8SAndy FiddamanSUBDIRS= \
37*906afcb8SAndy Fiddaman	tools \
38*906afcb8SAndy Fiddaman	libast \
39*906afcb8SAndy Fiddaman	libcmd \
40*906afcb8SAndy Fiddaman	libdll \
41*906afcb8SAndy Fiddaman	libpp \
42*906afcb8SAndy Fiddaman	libshell \
43*906afcb8SAndy Fiddaman	libsum \
44*906afcb8SAndy Fiddaman	ksh \
45*906afcb8SAndy Fiddaman	msgcc \
46*906afcb8SAndy Fiddaman	shcomp
47da2e3ebdSchin
48da2e3ebdSchin.KEEP_STATE:
49*906afcb8SAndy Fiddaman.PARALLEL: $(SUBDIRS)
50da2e3ebdSchin
51*906afcb8SAndy Fiddamanall clean clobber install install_h _msg _feature: $(SUBDIRS)
52da2e3ebdSchin
53da2e3ebdSchin$(SUBDIRS): FRC
54da2e3ebdSchin	@cd $@; pwd; $(MAKE) $(TARGET)
55da2e3ebdSchin
56da2e3ebdSchinFRC:
57da2e3ebdSchin
58*906afcb8SAndy Fiddamanlibast:		tools
59*906afcb8SAndy Fiddamanlibcmd:		libsum libast
60*906afcb8SAndy Fiddamanlibdll:		libast
61*906afcb8SAndy Fiddamanlibpp:		libast
62*906afcb8SAndy Fiddamanlibshell:	libast libcmd libdll
63*906afcb8SAndy Fiddamanlibsum:		libast
64*906afcb8SAndy Fiddaman
65*906afcb8SAndy Fiddamanshcomp:		libshell
66*906afcb8SAndy Fiddamanmsgcc:		libast libpp
67*906afcb8SAndy Fiddamanksh:		libshell shcomp
68