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 #
23 # Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
24 # Copyright (c) 2014, Joyent, Inc.
25 #
26
27 include $(SRC)/Makefile.master
28 include ../../Makefile.tools
29
30 PYSRCS = \
31 __init__.py \
32 Backup.py \
33 Ignore.py \
34 Version.py \
35 WorkSpace.py
36
37 PYOBJS = $(PYSRCS:%.py=%.pyc)
38 PYTOPDIR = $(ROOTONBLDLIB)
39 PYMODDIR = onbld/Scm
40
41 include ../../Makefile.python
42
43 all: $(PYVERSOBJS)
44
45 install: all $(ROOTPYFILES)
46
47 clean:
48
49 clobber: clean pyclobber
|
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 #
23 # Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
24 # Copyright (c) 2014, Joyent, Inc.
25 #
26
27 include $(SRC)/Makefile.master
28 include ../../Makefile.tools
29
30 PYSRCS = \
31 __init__.py \
32 Ignore.py
33
34 PYOBJS = $(PYSRCS:%.py=%.pyc)
35 PYTOPDIR = $(ROOTONBLDLIB)
36 PYMODDIR = onbld/Scm
37
38 include ../../Makefile.python
39
40 all: $(PYVERSOBJS)
41
42 install: all $(ROOTPYFILES)
43
44 clean:
45
46 clobber: clean pyclobber
|