bass-o-matic: fix path for encumbered history
[oi-userland.git] / tools / Makefile
blob84829be7545a969d12f0c2d1977a0227a5ec9163
2 # CDDL HEADER START
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.
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.
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]
19 # CDDL HEADER END
21 # Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
23 .NOTPARALLEL:
25 include ../make-rules/shared-macros.mk
27 #download setup prep build install publish \
28 #validate: links pkglint time-$(MACH32).so time-$(MACH64).so
29 download setup prep build install publish validate: pkglint time-$(MACH32).so time-$(MACH64).so
31 # generate wrappers for parfait. we need to generate them
32 # with the correct compiler variables from the common makefiles because
33 # some things reset the environment which causes lovely infinite
34 # loops
35 links:
36 @$(MKDIR) parfait
37 @for i in cc CC gcc g++ ld ; do \
38 $(MKDIR) parfait ; \
39 $(RM) parfait/$$i ; \
40 echo "#!/bin/ksh" > parfait/$$i ; \
41 echo "IFS=" >> parfait/$$i ; \
42 echo "export PARFAIT_NATIVEGCC=$(GCC_ROOT)/bin/gcc" >> parfait/$$i ; \
43 echo "export PARFAIT_NATIVEGXX=$(GCC_ROOT)/bin/g++" >> parfait/$$i ; \
44 echo "exec" $(PARFAIT_ROOT)/bin/parfait-$$i '$$*' >> parfait/$$i ; \
45 chmod +x parfait/$$i ; \
46 done
48 pkglint:
49 @rm -f pkglint
50 @sed -e "s,WS_TOP_XXX,$(WS_TOP)/$(MACH)," \
51 < pkglint.sh \
52 > pkglint
53 @chmod +x pkglint
56 time-$(MACH32).o: BITS=32
57 time-$(MACH64).o: BITS=64
58 time-$(MACH32).o time-$(MACH64).o: CFLAGS += $(CC_PIC)
60 time-$(MACH32).o time-$(MACH64).o: time.c
61 @$(CC) $(CFLAGS) -c -o $@ $<
63 time-%.so: time-%.o
64 @$(LD) -G -o $@ $<
66 clean:
67 @$(RM) time-*.o time*.bc
68 @$(RM) pkglint
70 clobber: clean
71 @$(RM) time-*.so python/pkglint/*.pyc
72 @$(RM) -r parfait