mjnelson | cdf0c1d | 2008-07-10 19:11:48 -0700 | [diff] [blame] | 1 | # |
| 2 | # CDDL HEADER START |
| 3 | # |
| 4 | # The contents of this file are subject to the terms of the |
| 5 | # Common Development and Distribution License (the "License"). |
| 6 | # You may not use this file except in compliance with the License. |
| 7 | # |
| 8 | # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE |
| 9 | # or http://www.opensolaris.org/os/licensing. |
| 10 | # See the License for the specific language governing permissions |
| 11 | # and limitations under the License. |
| 12 | # |
| 13 | # When distributing Covered Code, include this CDDL HEADER in each |
| 14 | # file and include the License file at usr/src/OPENSOLARIS.LICENSE. |
| 15 | # If applicable, add the following below this CDDL HEADER, with the |
| 16 | # fields enclosed by brackets "[]" replaced with your own identifying |
| 17 | # information: Portions Copyright [yyyy] [name of copyright owner] |
| 18 | # |
| 19 | # CDDL HEADER END |
| 20 | # |
| 21 | |
| 22 | # |
Richard Lowe | 87ab362 | 2010-04-22 10:13:38 -0700 | [diff] [blame] | 23 | # Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved. |
mjnelson | cdf0c1d | 2008-07-10 19:11:48 -0700 | [diff] [blame] | 24 | # |
mjnelson | cdf0c1d | 2008-07-10 19:11:48 -0700 | [diff] [blame] | 25 | |
Andy Fiddaman | b9219c8 | 2018-11-15 10:17:46 +0000 | [diff] [blame^] | 26 | # Copyright 2018 OmniOS Community Edition (OmniOSce) Association. |
| 27 | |
mjnelson | cdf0c1d | 2008-07-10 19:11:48 -0700 | [diff] [blame] | 28 | include ../Makefile.tools |
| 29 | |
Andy Fiddaman | b9219c8 | 2018-11-15 10:17:46 +0000 | [diff] [blame^] | 30 | SUBDIRS=Checks Scm |
| 31 | $(BUILDPY2TOOLS)SUBDIRS += py2 |
| 32 | $(BUILDPY3TOOLS)SUBDIRS += py3 |
mjnelson | cdf0c1d | 2008-07-10 19:11:48 -0700 | [diff] [blame] | 33 | |
Andy Fiddaman | b9219c8 | 2018-11-15 10:17:46 +0000 | [diff] [blame^] | 34 | all := TARGET= all |
| 35 | install := TARGET= install |
| 36 | clean := TARGET= clean |
| 37 | clobber := TARGET= clobber |
| 38 | lint := TARGET= lint |
mjnelson | cdf0c1d | 2008-07-10 19:11:48 -0700 | [diff] [blame] | 39 | |
Andy Fiddaman | b9219c8 | 2018-11-15 10:17:46 +0000 | [diff] [blame^] | 40 | all install clean clobber lint: $(SUBDIRS) |
Mark J. Nelson | b4218d7 | 2009-06-20 12:08:08 -0600 | [diff] [blame] | 41 | |
mjnelson | cdf0c1d | 2008-07-10 19:11:48 -0700 | [diff] [blame] | 42 | $(SUBDIRS): FRC |
| 43 | @cd $@; pwd; $(MAKE) $(TARGET) |
| 44 | |
| 45 | FRC: |
Andy Fiddaman | b9219c8 | 2018-11-15 10:17:46 +0000 | [diff] [blame^] | 46 | |