xref: /illumos-gate/usr/src/cmd/vi/port/Makefile (revision 78f846c0ab4f41678386d3e1b49c16cc8db07a8b)
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 2010 Sun Microsystems, Inc.  All rights reserved.
24# Use is subject to license terms.
25#
26# Copyright (c) 2018, Joyent, Inc.
27
28# cmd/vi/port/Makefile
29
30PROG= ex
31XPG4PROG= ex
32XPG6PROG= ex
33LIBPROGS= expreserve exrecover
34XD4= exobjs.xpg4
35XD6= exobjs.xpg6
36
37EXOBJS=	bcopy.o ex.o ex_addr.o ex_cmds.o ex_cmds2.o \
38	ex_cmdsub.o ex_data.o ex_extern.o ex_get.o \
39	ex_io.o ex_put.o ex_re.o ex_set.o ex_subr.o \
40	ex_temp.o ex_tty.o ex_unix.o ex_v.o ex_vadj.o \
41	ex_vget.o ex_vmain.o ex_voper.o ex_vops.o \
42	ex_vops2.o ex_vops3.o ex_vput.o ex_vwind.o \
43	printf.o
44EXOBJS_XPG4= $(EXOBJS) compile.o values-xpg4.o
45EXOBJS_XPG6= $(EXOBJS) compile.o values-xpg6.o
46XPG4EXOBJS= ${EXOBJS_XPG4:%=$(XD4)/%}
47XPG6EXOBJS= ${EXOBJS_XPG6:%=$(XD6)/%}
48EXRECOVEROBJS=	exrecover.o ex_extern.o
49OBJS= $(EXOBJS) $(XPG4EXOBJS) $(XPG6EXOBJS) expreserve.o exrecover.o
50SRCS= $(EXOBJS:%.o=%.c) expreserve.c exrecover.c
51TXTS = READ_ME makeoptions asfix.c70 ex.news port.mk.370 port.mk.70	\
52	port.mk.c70 port.mk.usg ovdoprnt.s ovprintf.c rofix
53
54include ../../Makefile.cmd
55
56CERRWARN += -_gcc=-Wno-implicit-function-declaration
57CERRWARN += -_gcc=-Wno-clobbered
58CERRWARN += -_gcc=-Wno-parentheses
59CERRWARN += -_gcc=-Wno-unused-variable
60CERRWARN += -_gcc=-Wno-unused-label
61CERRWARN += -_gcc=-Wno-unused-value
62CERRWARN += $(CNOWARN_UNINIT)
63CERRWARN += -_gcc=-Wno-address
64
65# way too old
66SMATCH=off
67
68#
69# For message catalogue files
70#
71POFILES= $(EXOBJS:%.o=%.po) expreserve.po exrecover.po
72POFILE= port.po
73
74# Include all XPG4 and XPG4ONLY changes in the XPG4 version
75$(XPG4) := CFLAGS += -DXPG4 -DXPG4ONLY
76
77# Include all XPG4 changes, but don't include XPG4ONLY in the XPG6 version
78$(XPG6) := CFLAGS += -DXPG4 -DXPG6 -I$(SRC)/lib/libc/inc
79
80CPPFLAGS +=  -DUSG -DSTDIO -DVMUNIX -DTABS=8 -DSINGLE -DTAG_STACK
81
82# vi maintains its own versions of various routines from libc and libcurses,
83# so localize all symbols to avoid name space collisions.
84LDFLAGS +=	$(MAPFILE.NGB:%=-Wl,-M%)
85
86CLOBBERFILES += $(LIBPROGS)
87ex :=		LDLIBS += -lmapmalloc -lcurses -lgen -lcrypt_i
88$(XPG4) :=	LDLIBS += -lmapmalloc -lcurses -lgen -lcrypt_i
89$(XPG6) :=	LDLIBS += -lmapmalloc -lcurses -lgen -lcrypt_i
90exrecover :=	LDLIBS += -lmapmalloc -lcrypt_i
91
92ROOTLIBPROGS= $(LIBPROGS:%=$(ROOTLIB)/%)
93
94# hard links to ex
95ROOTLINKS= $(ROOTBIN)/edit $(ROOTHASBIN)/edit $(ROOTBIN)/vedit \
96	$(ROOTHASBIN)/vedit $(ROOTHASBIN)/vi $(ROOTHASBIN)/view \
97
98ROOTXPG4LINKS= $(ROOTXPG4BIN)/vi $(ROOTXPG4BIN)/view $(ROOTXPG4BIN)/edit \
99	$(ROOTXPG4BIN)/vedit
100ROOTXPG6LINKS= $(ROOTXPG6BIN)/vi $(ROOTXPG6BIN)/view $(ROOTXPG6BIN)/edit \
101	$(ROOTXPG6BIN)/vedit
102.KEEP_STATE:
103
104.PARALLEL: $(OBJS)
105
106all: $(PROG) $(XPG4) $(XPG6) $(LIBPROGS)
107
108$(PROG): $(EXOBJS)
109	$(LINK.c) $(EXOBJS) -o $@ $(LDLIBS)
110	$(POST_PROCESS)
111
112ex.xpg4: $(XD4) $(XPG4EXOBJS)
113	$(LINK.c) $(XPG4EXOBJS) -o $@ $(LDLIBS)
114	$(POST_PROCESS)
115
116ex.xpg6: $(XD6) $(XPG6EXOBJS)
117	$(LINK.c) $(XPG6EXOBJS) -o $@ $(LDLIBS)
118	$(POST_PROCESS)
119
120$(XD4)/compile.o $(XD6)/compile.o: ../../expr/compile.c
121	$(COMPILE.c) -o $@ ../../expr/compile.c
122
123%values-xpg4.o: ../../../lib/crt/common/values-xpg4.c
124	$(COMPILE.c) -o $@ ../../../lib/crt/common/values-xpg4.c
125
126%values-xpg6.o: ../../../lib/crt/common/values-xpg6.c
127	$(COMPILE.c) -o $@ ../../../lib/crt/common/values-xpg6.c
128
129$(XPG4EXOBJS): $(XD4)
130
131$(XPG6EXOBJS): $(XD6)
132
133$(XD4)/%.o:	%.c
134	$(COMPILE.c) -o $@ $<
135
136$(XD6)/%.o:	%.c
137	$(COMPILE.c) -o $@ $<
138
139$(XD4):
140	-@mkdir -p $@
141
142$(XD6):
143	-@mkdir -p $@
144
145exrecover:	$(EXRECOVEROBJS)
146	$(LINK.c) $(EXRECOVEROBJS) -o $@ $(LDLIBS)
147	$(POST_PROCESS)
148
149catalog: $(MSGDOMAIN) $(POFILE)
150
151$(POFILE): $(POFILES)
152	$(RM) $@
153	cat $(POFILES) > $@
154
155
156install: all $(ROOTHASBINPROG) $(ROOTLIBPROGS) $(ROOTLINKS) \
157	$(ROOTXPG4PROG) $(ROOTXPG4LINKS) $(ROOTXPG6PROG) $(ROOTXPG6LINKS)
158
159$(ROOTLINKS): $(ROOTHASBINPROG)
160	-$(RM) $@
161	-$(LN) -f $(ROOTHASBINPROG) $@
162
163$(ROOTXPG4LINKS): $(ROOTXPG4PROG)
164	-$(RM) $@
165	-$(LN) -f $(ROOTXPG4PROG) $@
166
167$(ROOTXPG6LINKS): $(ROOTXPG6PROG)
168	-$(RM) $@
169	-$(LN) -f $(ROOTXPG6PROG) $@
170
171clean:
172	$(RM) $(OBJS)
173
174include ../../Makefile.targ
175