1 # 2 # 3 # CDDL HEADER START 4 # 5 # The contents of this file are subject to the terms of the 6 # Common Development and Distribution License (the "License"). 7 # You may not use this file except in compliance with the License. 8 # 9 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 10 # or http://www.opensolaris.org/os/licensing. 11 # See the License for the specific language governing permissions 12 # and limitations under the License. 13 # 14 # When distributing Covered Code, include this CDDL HEADER in each 15 # file and include the License file at usr/src/OPENSOLARIS.LICENSE. 16 # If applicable, add the following below this CDDL HEADER, with the 17 # fields enclosed by brackets "[]" replaced with your own identifying 18 # information: Portions Copyright [yyyy] [name of copyright owner] 19 # 20 # CDDL HEADER END 21 # 22 # Copyright 2008 Sun Microsystems, Inc. All rights reserved. 23 # Use is subject to license terms. 24 # 25 # ident "@(#)Makefile.sfw 1.2 08/02/09 SMI" 26 27 BCCVER=0.16.17 28 CMDSRC=Dev86src-$(BCCVER).tar.gz 29 SRCDIR=dev86-$(BCCVER) 30 31 include ../Makefile.cmd 32 33 MAKE=$(GMAKE) 34 CC=$(GCC) 35 36 BINS=$(SRCDIR)/bcc/bcc $(SRCDIR)/bcc/bcc-cc1 $(SRCDIR)/as/as86 \ 37 $(SRCDIR)/ar/ar86 $(SRCDIR)/ld/ld86 38 39 all: $(BINS) 40 41 $(BINS): $(SRCDIR)/config.status 42 echo "#define BCC_VERSION $(BCCVER)" > $(@D)/version.h 43 cd $(@D); CC=$(CC) $(MAKE) $(@F) 44 45 install: all 46 VERS=$(SRCDIR) $(SH) ./install-sfw 47 48 $(SRCDIR)/config.status: 49 gzcat $(CMDSRC) | tar xof - 50 touch $@ 51 52 clean: 53 -rm -rf $(SRCDIR) 54 55 include ../Makefile.targ 56