xref: /illumos-gate/usr/src/cmd/fs.d/nfs/tests/Makefile (revision 02ac56e010f18fc0c5aafe47377586d8ba8c897c)
1dec98d2aSGordon Ross#
2dec98d2aSGordon Ross# CDDL HEADER START
3dec98d2aSGordon Ross#
4dec98d2aSGordon Ross# The contents of this file are subject to the terms of the
5*02ac56e0SMatt Barden# Common Development and Distribution License (the "License").
6*02ac56e0SMatt Barden# You may not use this file except in compliance with the License.
7dec98d2aSGordon Ross#
8dec98d2aSGordon Ross# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9dec98d2aSGordon Ross# or http://www.opensolaris.org/os/licensing.
10dec98d2aSGordon Ross# See the License for the specific language governing permissions
11dec98d2aSGordon Ross# and limitations under the License.
12dec98d2aSGordon Ross#
13dec98d2aSGordon Ross# When distributing Covered Code, include this CDDL HEADER in each
14dec98d2aSGordon Ross# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15dec98d2aSGordon Ross# If applicable, add the following below this CDDL HEADER, with the
16dec98d2aSGordon Ross# fields enclosed by brackets "[]" replaced with your own identifying
17dec98d2aSGordon Ross# information: Portions Copyright [yyyy] [name of copyright owner]
18dec98d2aSGordon Ross#
19dec98d2aSGordon Ross# CDDL HEADER END
20dec98d2aSGordon Ross#
21dec98d2aSGordon Ross#
22*02ac56e0SMatt Barden#
23*02ac56e0SMatt Barden# Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
24dec98d2aSGordon Ross# Use is subject to license terms.
25dec98d2aSGordon Ross#
26*02ac56e0SMatt Barden# Copyright 2022 Tintri by DDN, Inc. All rights reserved.
27*02ac56e0SMatt Barden#
28dec98d2aSGordon Ross
29*02ac56e0SMatt Bardeninclude $(SRC)/Makefile.master
30dec98d2aSGordon Ross
31*02ac56e0SMatt BardenSUBDIRS = rpcsec_gss_conn test_svc_tp_create
32dec98d2aSGordon Ross
33*02ac56e0SMatt Bardenall:=		TARGET= all
34*02ac56e0SMatt Bardeninstall:=	TARGET= install
35*02ac56e0SMatt Bardenclean:=		TARGET= clean
36*02ac56e0SMatt Bardenclobber:=	TARGET= clobber
37*02ac56e0SMatt Bardencatalog:=       TARGET= catalog
38dec98d2aSGordon Ross
39*02ac56e0SMatt Barden.KEEP_STATE:
40dec98d2aSGordon Ross
41*02ac56e0SMatt Barden.PARALLEL:	$(SUBDIRS)
425661bb76SJohn Levon
43*02ac56e0SMatt Bardenall install clean clobber: $(SUBDIRS)
44dec98d2aSGordon Ross
45*02ac56e0SMatt Bardencatalog: $(SUBDIRS)
46*02ac56e0SMatt Barden	$(RM) $(POFILE)
47*02ac56e0SMatt Barden	cat $(POFILES) > $(POFILE)
48dec98d2aSGordon Ross
49*02ac56e0SMatt Barden$(SUBDIRS): FRC
50*02ac56e0SMatt Barden	@cd $@; pwd; $(MAKE) $(TARGET)
51dec98d2aSGordon Ross
52*02ac56e0SMatt BardenFRC:
53