xref: /illumos-gate/usr/src/cmd/lp/cmd/lpadmin/Makefile (revision 5a0af816)
1#
2# CDDL HEADER START
3#
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.
7#
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.
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#
24# Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
25# Use is subject to license terms.
26#
27
28include		../../Makefile.lp
29
30CPPFLAGS =	-D_REENTRANT -I. -I$(LPINC) $(CPPFLAGS.master)
31
32SRCS=		chkopts.c	\
33		default.c	\
34		do_align.c	\
35		do_fault.c	\
36		do_mount.c	\
37		do_printer.c	\
38		do_pwheel.c	\
39		done.c		\
40		fromclass.c	\
41		ismodel.c	\
42		lpadmin.c	\
43		options.c	\
44		output.c	\
45		pick_opts.c	\
46		rmdest.c	\
47		send_message.c	\
48		signals.c	\
49		startup.c	\
50		usage.c
51
52OBJS=		$(SRCS:.c=.o)
53
54LPLIBS=		$(LIBACC)	\
55		$(LIBCLS)	\
56		$(LIBMSG)	\
57		$(LIBPRT)	\
58		$(LIBFRM)	\
59		$(LIBREQ)	\
60		$(LIBOAM)	\
61		$(LIBLP)
62
63SYSLIBS=	-lcurses
64
65LDLIBS +=	-lsecdb $(LPLIBS) $(SYSLIBS) $(I18N) $(LDSTACKPROTECT)
66LDFLAGS +=	$(MAPFILE.NGB:%=-Wl,-M%)
67
68PROG=		lpadmin
69
70
71#ROOTSYMLINK=	$(ROOTLIBPROG)
72
73POFILE=		lp_cmd_lpadmin.po
74
75.KEEP_STATE:
76
77all:		$(PROG)
78
79$(PROG):	$(OBJS) $(MAPFILE.NGB)
80		$(LINK.c) $(OBJS) -o $@ $(LDLIBS)
81		$(POST_PROCESS)
82
83install:	all $(ROOTLIBLPLOCLPROG) #$(ROOTSYMLINK)
84
85#$(ROOTSYMLINK):
86#		$(RM) $@; $(SYMLINK) ../sbin/$(PROG) $@
87
88clean:
89		$(RM) $(OBJS)
90
91clobber: clean
92		-$(RM) $(PROG) $(CLOBBERFILES)
93
94include		../Makefile.msg
95