xref: /illumos-gate/usr/src/cmd/listen/Makefile (revision 4421e67684faea98cd9bffa503bdc3779557762f)
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# Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
24# Use is subject to license terms.
25#
26# ident	"%Z%%M%	%I%	%E% SMI"
27#
28PROG= listen nlps_server
29
30DBGOBJ	= doprnt.o
31DBGSRC	= doprnt.c
32
33LSOBJS  =	listen.o lslog.o lsdbf.o lsdata.o nstoa.o nlsaddr.o
34
35NLPSOBJS =	nlps_serv.o lsdbf.o lssmb.o nstoa.o lslog.o lsdata.o
36
37OBJS= $(LSOBJS) $(NLPSOBJS)
38LSSRC= $(LSOBJS:%.o=%.c)
39NLPSSRC= $(NLPSOBJS:%.o=%.c)
40SRCS= $(LSSRC) $(NLPSSRC)
41
42include ../Makefile.cmd
43
44LIBSAFD = $(ROOTLIB)/saf
45NETD = $(ROOT)/usr/net
46NETNLSD = $(NETD)/nls
47
48# Don"t re-install /usr/lib/saf/ and /usr/net, Targetdirs installs them
49#DIRS= $(LIBSAFD) $(NETD) $(NETNLSD)
50DIRS=  $(NETNLSD)
51ROOTSAFPROG= $(PROG:%=$(LIBSAFD)/%)
52
53# If machine name and /etc/issue file need to be printed
54# before the service prompt is printed, then:  CPPFLAGS += -DSYS_NAME
55# If debug is needed, then:  CPPFLAGS += -DDEBUG
56
57LDLIBS += -lnsl
58LDFLAGS += $(MAPFILE.NGB:%=-M%)
59LINTFLAGS = -b -x
60OWNER= root
61GROUP= sys
62FILEMODE= 0755
63
64$(LIBSAFD)/% : %
65	$(INS.file)
66
67.KEEP_STATE:
68
69all: $(PROG)
70
71listen:	$(LSOBJS) $(MAPFILE.NGB)
72	$(LINK.c) $(LSOBJS) -o $@ $(LDLIBS)
73	$(POST_PROCESS)
74
75nlps_server:	$(NLPSOBJS) $(MAPFILE.NGB)
76	$(LINK.c) $(NLPSOBJS) -o $@ $(LDLIBS)
77	$(POST_PROCESS)
78
79install: all $(DIRS) $(ROOTSAFPROG)
80	$(RM) $(ROOT)/usr/net/nls/listen
81	-$(SYMLINK) ../../lib/saf/listen $(ROOT)/usr/net/nls/listen
82	$(RM) $(ROOT)/usr/net/nls/nlps_server
83	-$(SYMLINK) ../../lib/saf/nlps_server $(ROOT)/usr/net/nls/nlps_server
84
85$(DIRS):
86	$(INS.dir)
87
88clean:
89	$(RM) $(OBJS)
90
91lint:
92	$(LINT.c) $(LSSRC)
93	$(LINT.c) $(NLPSSRC)
94
95include ../Makefile.targ
96