xref: /dragonfly/contrib/bmake/mk/prog.mk (revision 0ca59c34)
1#	$Id: prog.mk,v 1.25 2013/07/18 05:46:24 sjg Exp $
2
3.if !target(__${.PARSEFILE}__)
4__${.PARSEFILE}__:
5
6.include <init.mk>
7
8# FreeBSD at least expects MAN8 etc.
9.if defined(MAN) && !empty(MAN)
10_sect:=${MAN:E}
11MAN${_sect}=${MAN}
12.endif
13
14.SUFFIXES: .out .o .c .cc .C .y .l .s .8 .7 .6 .5 .4 .3 .2 .1 .0
15
16CFLAGS+=	${COPTS}
17
18.if ${TARGET_OSNAME} == "NetBSD"
19.if ${MACHINE_ARCH} == "sparc64"
20CFLAGS+=	-mcmodel=medlow
21.endif
22
23# ELF platforms depend on crtbegin.o and crtend.o
24.if ${OBJECT_FMT} == "ELF"
25.ifndef LIBCRTBEGIN
26LIBCRTBEGIN=	${DESTDIR}/usr/lib/crtbegin.o
27.MADE: ${LIBCRTBEGIN}
28.endif
29.ifndef LIBCRTEND
30LIBCRTEND=	${DESTDIR}/usr/lib/crtend.o
31.MADE: ${LIBCRTEND}
32.endif
33_SHLINKER=	${SHLINKDIR}/ld.elf_so
34.else
35LIBCRTBEGIN?=
36LIBCRTEND?=
37_SHLINKER=	${SHLINKDIR}/ld.so
38.endif
39
40.ifndef LIBCRT0
41LIBCRT0=	${DESTDIR}/usr/lib/crt0.o
42.MADE: ${LIBCRT0}
43.endif
44.endif	# NetBSD
45
46# here is where you can define what LIB* are
47.-include <libnames.mk>
48.if ${MK_DPADD_MK} == "yes"
49# lots of cool magic, but might not suit everyone.
50.include <dpadd.mk>
51.endif
52
53.if ${MK_GPROF} == "yes"
54CFLAGS+= ${CC_PG} ${PROFFLAGS}
55LDADD+= ${CC_PG}
56.if ${MK_DPADD_MK} == "no"
57LDADD_LIBC_P?= -lc_p
58LDADD_LAST+= ${LDADD_LIBC_P}
59.endif
60.endif
61
62.if defined(SHAREDSTRINGS)
63CLEANFILES+=strings
64.c.o:
65	${CC} -E ${CFLAGS} ${.IMPSRC} | xstr -c -
66	@${CC} ${CFLAGS} -c x.c -o ${.TARGET}
67	@rm -f x.c
68
69.cc.o:
70	${CXX} -E ${CXXFLAGS} ${.IMPSRC} | xstr -c -
71	@mv -f x.c x.cc
72	@${CXX} ${CXXFLAGS} -c x.cc -o ${.TARGET}
73	@rm -f x.cc
74
75.C.o:
76	${CXX} -E ${CXXFLAGS} ${.IMPSRC} | xstr -c -
77	@mv -f x.c x.C
78	@${CXX} ${CXXFLAGS} -c x.C -o ${.TARGET}
79	@rm -f x.C
80.endif
81
82
83.if defined(PROG)
84SRCS?=	${PROG}.c
85.for s in ${SRCS:N*.h:N*.sh:M*/*}
86${.o .po .lo:L:@o@${s:T:R}$o@}: $s
87.endfor
88.if !empty(SRCS:N*.h:N*.sh)
89OBJS+=	${SRCS:T:N*.h:N*.sh:R:S/$/.o/g}
90LOBJS+=	${LSRCS:.c=.ln} ${SRCS:M*.c:.c=.ln}
91.endif
92
93.if defined(OBJS) && !empty(OBJS)
94.NOPATH: ${OBJS} ${PROG} ${SRCS:M*.[ly]:C/\..$/.c/} ${YHEADER:D${SRCS:M*.y:.y=.h}}
95
96# this is known to work for NetBSD 1.6 and FreeBSD 4.2
97.if ${TARGET_OSNAME} == "NetBSD" || ${TARGET_OSNAME} == "FreeBSD"
98_PROGLDOPTS=
99.if ${SHLINKDIR} != "/usr/libexec"	# XXX: change or remove if ld.so moves
100_PROGLDOPTS+=	-Wl,-dynamic-linker=${_SHLINKER}
101.endif
102.if defined(LIBDIR) && ${SHLIBDIR} != ${LIBDIR}
103_PROGLDOPTS+=	-Wl,-rpath-link,${DESTDIR}${SHLIBDIR}:${DESTDIR}/usr/lib \
104		-L${DESTDIR}${SHLIBDIR}
105.endif
106_PROGLDOPTS+=	-Wl,-rpath,${SHLIBDIR}:/usr/lib
107
108.if defined(PROG_CXX)
109_CCLINK=	${CXX}
110_SUPCXX=	-lstdc++ -lm
111.endif
112.endif	# NetBSD
113
114_CCLINK?=	${CC}
115
116.if defined(DESTDIR) && exists(${LIBCRT0}) && ${LIBCRT0} != "/dev/null"
117
118${PROG}: ${LIBCRT0} ${OBJS} ${LIBC} ${DPADD}
119	${_CCLINK} ${LDFLAGS} ${LDSTATIC} -o ${.TARGET} -nostdlib ${_PROGLDOPTS} -L${DESTDIR}/usr/lib ${LIBCRT0} ${LIBCRTBEGIN} ${OBJS} ${LDADD} -L${DESTDIR}/usr/lib ${_SUPCXX} -lgcc -lc -lgcc ${LIBCRTEND}
120
121.else
122
123${PROG}: ${LIBCRT0} ${OBJS} ${LIBC} ${DPADD}
124	${_CCLINK} ${LDFLAGS} ${LDSTATIC} -o ${.TARGET} ${_PROGLDOPTS} ${OBJS} ${LDADD}
125
126.endif	# defined(DESTDIR)
127.endif	# defined(OBJS) && !empty(OBJS)
128
129.if	!defined(MAN)
130MAN=	${PROG}.1
131.endif	# !defined(MAN)
132.endif	# defined(PROG)
133
134.if !defined(_SKIP_BUILD)
135all: ${PROG}
136.endif
137all: _SUBDIRUSE
138
139.if !target(clean)
140cleanprog:
141	rm -f a.out [Ee]rrs mklog core *.core \
142	    ${PROG} ${OBJS} ${LOBJS} ${CLEANFILES}
143
144clean: _SUBDIRUSE cleanprog
145cleandir: _SUBDIRUSE cleanprog
146.else
147cleandir: _SUBDIRUSE clean
148.endif
149
150.if defined(SRCS) && (!defined(MKDEP) || ${MKDEP} != autodep)
151afterdepend: .depend
152	@(TMP=/tmp/_depend$$$$; \
153	    sed -e 's/^\([^\.]*\).o[ ]*:/\1.o \1.ln:/' \
154	      < .depend > $$TMP; \
155	    mv $$TMP .depend)
156.endif
157
158.if !target(install)
159.if !target(beforeinstall)
160beforeinstall:
161.endif
162.if !target(afterinstall)
163afterinstall:
164.endif
165
166.if !empty(BINOWN)
167PROG_INSTALL_OWN ?= -o ${BINOWN} -g ${BINGRP}
168.endif
169
170.if !target(realinstall)
171realinstall: proginstall
172.endif
173.if !target(proginstall)
174proginstall:
175.if defined(PROG)
176	[ -d ${DESTDIR}${BINDIR} ] || \
177	${INSTALL} -d ${PROG_INSTALL_OWN} -m 775 ${DESTDIR}${BINDIR}
178	${INSTALL} ${COPY} ${STRIP_FLAG} ${PROG_INSTALL_OWN} -m ${BINMODE} \
179	    ${PROG} ${DESTDIR}${BINDIR}/${PROG_NAME}
180.endif
181.if defined(HIDEGAME)
182	(cd ${DESTDIR}/usr/games; rm -f ${PROG}; ln -s dm ${PROG})
183.endif
184.endif
185
186.include <links.mk>
187
188install: maninstall install_links _SUBDIRUSE
189
190install_links:
191.if !empty(SYMLINKS)
192	@set ${SYMLINKS}; ${_SYMLINKS_SCRIPT}
193.endif
194.if !empty(LINKS)
195	@set ${LINKS}; ${_LINKS_SCRIPT}
196.endif
197
198maninstall: afterinstall
199afterinstall: realinstall
200realinstall: beforeinstall
201.endif
202
203.if !target(lint)
204lint: ${LOBJS}
205.if defined(LOBJS) && !empty(LOBJS)
206	@${LINT} ${LINTFLAGS} ${LDFLAGS:M-L*} ${LOBJS} ${LDADD}
207.endif
208.endif
209
210.NOPATH:	${PROG}
211.if defined(OBJS) && !empty(OBJS)
212.NOPATH:	${OBJS}
213.endif
214
215.if ${MK_MAN} != "no"
216.include <man.mk>
217.endif
218
219.if ${MK_NLS} != "no"
220.include <nls.mk>
221.endif
222
223.include <obj.mk>
224.include <dep.mk>
225.include <subdir.mk>
226.include <final.mk>
227
228.endif
229