1 #
2 # This file and its contents are supplied under the terms of the
3 # Common Development and Distribution License ("CDDL"), version 1.0.
4 # You may only use this file in accordance with the terms of version
5 # 1.0 of the CDDL.
6 #
7 # A full copy of the text of the CDDL should have accompanied this
8 # source. A copy of the CDDL is also available via the Internet at
9 # http://www.illumos.org/license/CDDL.
10 #
11
12 # Copyright 2015, Richard Lowe.
13
14 PROG= make
15 OBJS= ar.o \
16 depvar.o \
17 doname.o \
18 dosys.o \
19 files.o \
20 globals.o \
21 implicit.o \
22 macro.o \
23 main.o \
24 misc.o \
25 nse_printdep.o \
26 parallel.o \
27 pmake.o \
28 read.o \
29 read2.o \
30 rep.o \
31 state.o
32
33 include ../../Makefile.cmd
34 include ../Makefile.com
35
36 LDLIBS += ../lib/mksh/libmksh.a ../lib/mksdmsi18n/libmksdmsi18n.a ../lib/vroot/libvroot.a
37 LDLIBS += ../lib/bsd/libbsd.a -lc -lnsl -lumem
38
39 CPPFLAGS += -D_FILE_OFFSET_BITS=64
40
41 ROOTLINKS = $(ROOTCCSBIN)/make $(ROOTXPG4BIN)/make $(ROOTBIN)/dmake $(ROOTCCSLIB)/svr4.make \
42 $(ROOTLIB)/svr4.make
43
44 ROOTRULES = $(ROOTSHLIB)/make/make.rules $(ROOTSHLIB)/make/svr4.make.rules
45
46 all: $(PROG)
47
48 install: all $(ROOTPROG) $(ROOTLINKS) $(ROOTRULES)
49
50 $(PROG): $(OBJS)
51 $(LINK.cc) $(OBJS) -o $@ $(LDLIBS)
52 $(POST_PROCESS)
53
54 $(ROOTCCSBIN)/make:
55 -$(RM) $@; $(SYMLINK) ../../bin/make $@
56
|
1 #
2 # This file and its contents are supplied under the terms of the
3 # Common Development and Distribution License ("CDDL"), version 1.0.
4 # You may only use this file in accordance with the terms of version
5 # 1.0 of the CDDL.
6 #
7 # A full copy of the text of the CDDL should have accompanied this
8 # source. A copy of the CDDL is also available via the Internet at
9 # http://www.illumos.org/license/CDDL.
10 #
11
12 # Copyright 2015, Richard Lowe.
13
14 PROG= make
15 POFILE= make.po
16 OBJS= ar.o \
17 depvar.o \
18 doname.o \
19 dosys.o \
20 files.o \
21 globals.o \
22 implicit.o \
23 macro.o \
24 main.o \
25 misc.o \
26 nse_printdep.o \
27 parallel.o \
28 pmake.o \
29 read.o \
30 read2.o \
31 rep.o \
32 state.o
33 POFILES= $(OBJS:%.o=%.po)
34
35 include ../../Makefile.cmd
36 include ../Makefile.com
37
38 LDLIBS += ../lib/mksh/libmksh.a ../lib/vroot/libvroot.a
39 LDLIBS += ../lib/bsd/libbsd.a -lc -lnsl -lumem
40
41 CPPFLAGS += -D_FILE_OFFSET_BITS=64
42
43 ROOTLINKS = $(ROOTCCSBIN)/make $(ROOTXPG4BIN)/make $(ROOTBIN)/dmake $(ROOTCCSLIB)/svr4.make \
44 $(ROOTLIB)/svr4.make
45
46 ROOTRULES = $(ROOTSHLIB)/make/make.rules $(ROOTSHLIB)/make/svr4.make.rules
47
48 all: $(PROG)
49
50 install: all $(ROOTPROG) $(ROOTLINKS) $(ROOTRULES)
51
52 $(PROG): $(OBJS)
53 $(LINK.cc) $(OBJS) -o $@ $(LDLIBS)
54 $(POST_PROCESS)
55
56 $(ROOTCCSBIN)/make:
57 -$(RM) $@; $(SYMLINK) ../../bin/make $@
58
|