8322 nl: misleading-indentation
[unleashed/tickless.git] / usr / src / cmd / make / bin / Makefile
blobb6d3778402b001943575a0b1c1f19a5393fe5fa0
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.
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.
12 # Copyright 2015, Richard Lowe.
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)
35 include ../../Makefile.cmd
36 include ../Makefile.com
38 LDLIBS += ../lib/mksh/libmksh.a ../lib/vroot/libvroot.a
39 LDLIBS += ../lib/bsd/libbsd.a -lc -lnsl -lumem
41 CPPFLAGS += -D_FILE_OFFSET_BITS=64
43 ROOTLINKS = $(ROOTCCSBIN)/make $(ROOTXPG4BIN)/make $(ROOTBIN)/dmake $(ROOTCCSLIB)/svr4.make \
44 $(ROOTLIB)/svr4.make
46 ROOTRULES = $(ROOTSHLIB)/make/make.rules $(ROOTSHLIB)/make/svr4.make.rules
48 all: $(PROG)
50 install: all $(ROOTPROG) $(ROOTLINKS) $(ROOTRULES)
52 $(PROG): $(OBJS)
53 $(LINK.cc) $(OBJS) -o $@ $(LDLIBS)
54 $(POST_PROCESS)
56 $(ROOTCCSBIN)/make:
57 -$(RM) $@; $(SYMLINK) ../../bin/make $@
59 $(ROOTCCSLIB)/svr4.make:
60 -$(RM) $@; $(SYMLINK) ../../bin/make $@
62 $(ROOTLIB)/svr4.make:
63 -$(RM) $@; $(SYMLINK) ../bin/make $@
65 $(ROOTXPG4BIN)/make:
66 -$(RM) $@; $(SYMLINK) ../../bin/make $@
68 $(ROOTBIN)/dmake:
69 -$(RM) $@; $(SYMLINK) ./make $@
71 $(ROOTRULES) := FILEMODE = 0444
73 $(ROOTRULES): $(ROOTSHLIB)/make
75 $(ROOTSHLIB)/make: FRC
76 $(INS.dir)
78 $(ROOTSHLIB)/make/%: %.file
79 $(INS.rename)
81 lint:
83 clean:
84 $(RM) $(OBJS)
86 FRC:
88 include ../../Makefile.targ