Makefile revision 7c478bd95313f5f23a4c958a745db2134aa03244
f951f076f3d321c52b824a866caff28ce4f8e06cAndreas Gustafsson#
9e0d0a279b956cc2eae41c00a6846b0ca8c617c6Automatic Updater# CDDL HEADER START
dafcb997e390efa4423883dafd100c975c4095d6Mark Andrews#
40f53fa8d9c6a4fc38c0014495e7a42b08f52481David Lawrence# The contents of this file are subject to the terms of the
ec5347e2c775f027573ce5648b910361aa926c01Automatic Updater# Common Development and Distribution License, Version 1.0 only
f951f076f3d321c52b824a866caff28ce4f8e06cAndreas Gustafsson# (the "License"). You may not use this file except in compliance
f951f076f3d321c52b824a866caff28ce4f8e06cAndreas Gustafsson# with the License.
40f53fa8d9c6a4fc38c0014495e7a42b08f52481David Lawrence#
dafcb997e390efa4423883dafd100c975c4095d6Mark Andrews# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
dafcb997e390efa4423883dafd100c975c4095d6Mark Andrews# or http://www.opensolaris.org/os/licensing.
dafcb997e390efa4423883dafd100c975c4095d6Mark Andrews# See the License for the specific language governing permissions
dafcb997e390efa4423883dafd100c975c4095d6Mark Andrews# and limitations under the License.
dafcb997e390efa4423883dafd100c975c4095d6Mark Andrews#
dafcb997e390efa4423883dafd100c975c4095d6Mark Andrews# When distributing Covered Code, include this CDDL HEADER in each
dafcb997e390efa4423883dafd100c975c4095d6Mark Andrews# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
f951f076f3d321c52b824a866caff28ce4f8e06cAndreas Gustafsson# If applicable, add the following below this CDDL HEADER, with the
f951f076f3d321c52b824a866caff28ce4f8e06cAndreas Gustafsson# fields enclosed by brackets "[]" replaced with your own identifying
86132f0ef54d263cd825dac9db3c992eeff3e8d9Evan Hunt# information: Portions Copyright [yyyy] [name of copyright owner]
ab023a65562e62b85a824509d829b6fad87e00b1Rob Austein#
ab023a65562e62b85a824509d829b6fad87e00b1Rob Austein# CDDL HEADER END
f951f076f3d321c52b824a866caff28ce4f8e06cAndreas Gustafsson#
f951f076f3d321c52b824a866caff28ce4f8e06cAndreas Gustafsson#
f80ea74e1984e0b1dbe48dd86ecdd3a2380393cbBob Halley#ident "%Z%%M% %I% %E% SMI"
1a69a1a78cfaa86f3b68bbc965232b7876d4da2aDavid Lawrence#
5c024f787777143031c2c49f9811c39c84bfa259Tatuya JINMEI 神明達哉# Copyright 2003 Sun Microsystems, Inc. All rights reserved.
1a69a1a78cfaa86f3b68bbc965232b7876d4da2aDavid Lawrence# Use is subject to license terms.
fc8a6561cbb0a1fea849950a3217aacd3b8f1eacDavid Lawrence#
1a69a1a78cfaa86f3b68bbc965232b7876d4da2aDavid Lawrence
ed04318ef686581fc9a20965a5be02abfb4f1bd5Andreas GustafssonPROG= bc
f951f076f3d321c52b824a866caff28ce4f8e06cAndreas GustafssonXPG6PROG= bc
f951f076f3d321c52b824a866caff28ce4f8e06cAndreas GustafssonXD= exobjs.xpg6
f951f076f3d321c52b824a866caff28ce4f8e06cAndreas GustafssonEXOBJS= bc.o
f951f076f3d321c52b824a866caff28ce4f8e06cAndreas GustafssonXPG6EXOBJS= exobjs.xpg6/bc.o
f951f076f3d321c52b824a866caff28ce4f8e06cAndreas Gustafsson
261a6a1f7d95eaf0cd882f3123dcfd775517a54fMark AndrewsLIBB= lib.b
f951f076f3d321c52b824a866caff28ce4f8e06cAndreas GustafssonCLOBBERFILES= $(LIBB)
f0e246e271f84c6fe960a3c36703a56d1067431cBrian Wellington
6c8abf481df85a67c3f32f5f107b554d3ff5a3edMark Andrewsinclude ../Makefile.cmd
6c8abf481df85a67c3f32f5f107b554d3ff5a3edMark Andrews
6c8abf481df85a67c3f32f5f107b554d3ff5a3edMark Andrews$(XPG6EXOBJS) := CFLAGS += -DXPG6
09f22ac5b09e70bc526015f37168ba33e21ea91fDavid LawrenceROOTLIBB= $(LIBB:%=$(ROOTLIB)/%)
f951f076f3d321c52b824a866caff28ce4f8e06cAndreas Gustafsson$(ROOTLIBB) := FILEMODE = $(LIBFILEMODE)
5c024f787777143031c2c49f9811c39c84bfa259Tatuya JINMEI 神明達哉
5c024f787777143031c2c49f9811c39c84bfa259Tatuya JINMEI 神明達哉.KEEP_STATE:
f951f076f3d321c52b824a866caff28ce4f8e06cAndreas Gustafsson
b239c8294a5653d21876d084e0c5b029f6b9fc5dMichael Graffall: $(PROG) $(XPG6) $(LIBB)
ab023a65562e62b85a824509d829b6fad87e00b1Rob Austein
ab023a65562e62b85a824509d829b6fad87e00b1Rob Austein$(PROG): $(EXOBJS)
ab023a65562e62b85a824509d829b6fad87e00b1Rob Austein $(LINK.c) -o $@ $(EXOBJS) $(LDLIBS)
ab023a65562e62b85a824509d829b6fad87e00b1Rob Austein $(POST_PROCESS)
5c024f787777143031c2c49f9811c39c84bfa259Tatuya JINMEI 神明達哉
b239c8294a5653d21876d084e0c5b029f6b9fc5dMichael Graff
ab023a65562e62b85a824509d829b6fad87e00b1Rob Austein$(XPG6): $(XD) $(XPG6EXOBJS)
f991461dc144794d80ff8d85e430fd8a6e6113f3David Lawrence $(LINK.c) -o $@ $(XPG6EXOBJS) $(LDLIBS)
b239c8294a5653d21876d084e0c5b029f6b9fc5dMichael Graff $(POST_PROCESS)
f991461dc144794d80ff8d85e430fd8a6e6113f3David Lawrence
5c024f787777143031c2c49f9811c39c84bfa259Tatuya JINMEI 神明達哉
f991461dc144794d80ff8d85e430fd8a6e6113f3David Lawrence$(LIBB): $(LIBB).data
f951f076f3d321c52b824a866caff28ce4f8e06cAndreas Gustafsson -$(RM) $(LIBB)
5c024f787777143031c2c49f9811c39c84bfa259Tatuya JINMEI 神明達哉 $(CP) $(LIBB).data $(LIBB)
f951f076f3d321c52b824a866caff28ce4f8e06cAndreas Gustafsson
f951f076f3d321c52b824a866caff28ce4f8e06cAndreas Gustafssoninstall: all $(ROOTPROG) $(ROOTXPG6PROG) $(ROOTLIBB)
f951f076f3d321c52b824a866caff28ce4f8e06cAndreas Gustafsson
584848087f7463c1f659ce4712dc047d8e7f2b07Francis Dupontclean:
40f53fa8d9c6a4fc38c0014495e7a42b08f52481David Lawrence -@rm -rf $(PROG).c $(PROG).x $(EXOBJS) $(XD) $(PROG) $(XPG6)
f951f076f3d321c52b824a866caff28ce4f8e06cAndreas Gustafsson
f951f076f3d321c52b824a866caff28ce4f8e06cAndreas Gustafssonlint:
f951f076f3d321c52b824a866caff28ce4f8e06cAndreas Gustafsson
f951f076f3d321c52b824a866caff28ce4f8e06cAndreas Gustafsson$(XPG6EXOBJS): $(XD)
f951f076f3d321c52b824a866caff28ce4f8e06cAndreas Gustafsson
5c024f787777143031c2c49f9811c39c84bfa259Tatuya JINMEI 神明達哉$(XD)/bc.o: bc.y
5c024f787777143031c2c49f9811c39c84bfa259Tatuya JINMEI 神明達哉 $(YACC.y) bc.y
5c024f787777143031c2c49f9811c39c84bfa259Tatuya JINMEI 神明達哉 $(COMPILE.c) -o $@ y.tab.c
f951f076f3d321c52b824a866caff28ce4f8e06cAndreas Gustafsson $(POST_PROCESS_O)
a928d619170d61da40c3bff29800ff73709140daAndreas Gustafsson $(RM) y.tab.c
1a69a1a78cfaa86f3b68bbc965232b7876d4da2aDavid Lawrence
1a69a1a78cfaa86f3b68bbc965232b7876d4da2aDavid Lawrence$(XD):
1a69a1a78cfaa86f3b68bbc965232b7876d4da2aDavid Lawrence -@mkdir -p $@
5c024f787777143031c2c49f9811c39c84bfa259Tatuya JINMEI 神明達哉
5c024f787777143031c2c49f9811c39c84bfa259Tatuya JINMEI 神明達哉
5c024f787777143031c2c49f9811c39c84bfa259Tatuya JINMEI 神明達哉include ../Makefile.targ
5c024f787777143031c2c49f9811c39c84bfa259Tatuya JINMEI 神明達哉