Makefile revision 7014882c6a3672fd0e5d60200af8643ae53c5928
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington#
7e5b2100ea65658a7ec3795919b4ecd29a6f118aMark Andrews# CDDL HEADER START
7e5b2100ea65658a7ec3795919b4ecd29a6f118aMark Andrews#
eae67738cba5ca069e9d1d4e7b836a2f7b00a374Mark Andrews# The contents of this file are subject to the terms of the
eae67738cba5ca069e9d1d4e7b836a2f7b00a374Mark Andrews# Common Development and Distribution License (the "License").
821d2613356f81e5bb5c107288d6d5cf35c2a1e8Mark Andrews# You may not use this file except in compliance with the License.
46e873c835bf7d9ec3e1097e0aceb8db5b1ae93aMark Andrews#
a3b428812703d22a605a9f882e71ed65f0ffdc65Mark Andrews# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
a9789e288ee11ae4315e27235c33bae5405bd7c4Mark Andrews# or http://www.opensolaris.org/os/licensing.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# See the License for the specific language governing permissions
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# and limitations under the License.
068a66979695c77359e7a9181bb3f831c965b21cMark Andrews#
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# When distributing Covered Code, include this CDDL HEADER in each
01bf5871f8861eb805dd8ca79bdb9b0b9e4e6a5eMark Andrews# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
c718d15a9a95054ee3c71540c02335426071fc6dMark Andrews# If applicable, add the following below this CDDL HEADER, with the
a9789e288ee11ae4315e27235c33bae5405bd7c4Mark Andrews# fields enclosed by brackets "[]" replaced with your own identifying
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark Andrews# information: Portions Copyright [yyyy] [name of copyright owner]
c718d15a9a95054ee3c71540c02335426071fc6dMark Andrews#
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark Andrews# CDDL HEADER END
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark Andrews#
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark Andrews#
c718d15a9a95054ee3c71540c02335426071fc6dMark Andrews# Copyright 2009 Sun Microsystems, Inc. All rights reserved.
c718d15a9a95054ee3c71540c02335426071fc6dMark Andrews# Use is subject to license terms.
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark Andrews#
821d2613356f81e5bb5c107288d6d5cf35c2a1e8Mark Andrews# cmd/prtfru/Makefile
91216cff91b34c9ff6e846dc23f248219cafe660Andreas Gustafsson#
821d2613356f81e5bb5c107288d6d5cf35c2a1e8Mark Andrews
821d2613356f81e5bb5c107288d6d5cf35c2a1e8Mark AndrewsPROG = prtfru
91216cff91b34c9ff6e846dc23f248219cafe660Andreas GustafssonOBJS = $(PROG).o main.o
821d2613356f81e5bb5c107288d6d5cf35c2a1e8Mark AndrewsSRCS = $(OBJS:%.o=%.c)
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington
a3b428812703d22a605a9f882e71ed65f0ffdc65Mark Andrewsinclude $(SRC)/cmd/Makefile.cmd
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark Andrews
c718d15a9a95054ee3c71540c02335426071fc6dMark AndrewsCFLAGS += $(CCVERBOSE)
c6d4f781529d2f28693546b25b2967d44ec89e60Mark AndrewsCERRWARN += -_gcc=-Wno-switch
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark AndrewsCERRWARN += -_gcc=-Wno-parentheses
c718d15a9a95054ee3c71540c02335426071fc6dMark AndrewsCPPFLAGS += -I$(SRC)/lib/libfru/include \
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark Andrews -I$(SRC)/lib/libfruutils
c069a20053d41ae299eb9457e50ea44ae9f73ed2Mark AndrewsLINTFLAGS += -u
ed178efa9ab8f813538fce4ff603b81ded9f1799Mark AndrewsEXTRA_LDLIBS = -lfru -lfrureg -lfruutils
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark Andrews
605bd686e437162b5ab65ac4e7c1be0bba1886ddMark AndrewsFILEMODE = 755
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark Andrews
ede29aeb412c5448ab9a2028763ae08e7887ca74Mark Andrews.KEEP_STATE:
1eb1e1e838d2ea00b166c918bf50764a95826be8Mark Andrews
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark Andrewsall: $(PROG)
821d2613356f81e5bb5c107288d6d5cf35c2a1e8Mark Andrews
91216cff91b34c9ff6e846dc23f248219cafe660Andreas Gustafsson$(PROG): $(OBJS)
821d2613356f81e5bb5c107288d6d5cf35c2a1e8Mark Andrews $(LINK.c) -o $@ $(OBJS) $(LDLIBS) $(EXTRA_LDLIBS)
821d2613356f81e5bb5c107288d6d5cf35c2a1e8Mark Andrews $(POST_PROCESS)
91216cff91b34c9ff6e846dc23f248219cafe660Andreas Gustafsson
821d2613356f81e5bb5c107288d6d5cf35c2a1e8Mark Andrewsinstall: all $(ROOTUSRSBIN) $(ROOTUSRSBINPROG)
821d2613356f81e5bb5c107288d6d5cf35c2a1e8Mark Andrews
91216cff91b34c9ff6e846dc23f248219cafe660Andreas Gustafsson$(ROOTUSRSBIN):
821d2613356f81e5bb5c107288d6d5cf35c2a1e8Mark Andrews $(INS.dir)
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington
26a77b80bb7ee886c6fa704348d5e80a011d8811Mark Andrewslint: lint_SRCS
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark Andrews
7e5b2100ea65658a7ec3795919b4ecd29a6f118aMark AndrewsPOFILE = $(PROG)_msg.po
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark AndrewsPOFILES = $(OBJS:%.o=%.po)
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark Andrews
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark Andrews$(POFILE): $(POFILES)
62ee2c9f460d2e2e45dcf1abc8b4b4a4a43f5618Mark Andrews $(RM) $@; cat $(POFILES) > $@
e086341ea57e618a60c9f166b95daee1fab71b3bMark Andrews
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark Andrewsclean:
a9789e288ee11ae4315e27235c33bae5405bd7c4Mark Andrews $(RM) $(OBJS)
068a66979695c77359e7a9181bb3f831c965b21cMark Andrews
821d2613356f81e5bb5c107288d6d5cf35c2a1e8Mark Andrewsinclude $(SRC)/cmd/Makefile.targ
91216cff91b34c9ff6e846dc23f248219cafe660Andreas Gustafsson