![cgd](/assets/img/avatar_default.png)
a bunch of rules, define a clean{kmod,lib,prog} target with the rules, and have both clean and cleandir depend on that. That eliminates a bug where 'cleandir' in a directory which included e.g. bsd.prog.mk but which also had subdirs would 'make clean' all the subdirs and then 'make cleandir' all ofthe subdirs. It also allows Makefiles to add more dependencies to 'clean' after inclusion of the make template. If 'clean' is already defined, the behaviour is the same as it used to be.
167 lines
3.7 KiB
Makefile
167 lines
3.7 KiB
Makefile
# $NetBSD: bsd.prog.mk,v 1.60 1997/01/22 01:34:13 cgd Exp $
|
|
# @(#)bsd.prog.mk 5.26 (Berkeley) 6/25/91
|
|
|
|
.if exists(${.CURDIR}/../Makefile.inc)
|
|
.include "${.CURDIR}/../Makefile.inc"
|
|
.endif
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
.SUFFIXES: .out .o .c .cc .C .y .l .s .8 .7 .6 .5 .4 .3 .2 .1 .0
|
|
|
|
CFLAGS+= ${COPTS}
|
|
|
|
LIBCRT0?= ${DESTDIR}/usr/lib/crt0.o
|
|
LIBC?= ${DESTDIR}/usr/lib/libc.a
|
|
LIBCOMPAT?= ${DESTDIR}/usr/lib/libcompat.a
|
|
LIBCRYPT?= ${DESTDIR}/usr/lib/libcrypt.a
|
|
LIBCURSES?= ${DESTDIR}/usr/lib/libcurses.a
|
|
LIBDBM?= ${DESTDIR}/usr/lib/libdbm.a
|
|
LIBDES?= ${DESTDIR}/usr/lib/libdes.a
|
|
LIBEDIT?= ${DESTDIR}/usr/lib/libedit.a
|
|
LIBGCC?= ${DESTDIR}/usr/lib/libgcc.a
|
|
LIBKDB?= ${DESTDIR}/usr/lib/libkdb.a
|
|
LIBKRB?= ${DESTDIR}/usr/lib/libkrb.a
|
|
LIBKVM?= ${DESTDIR}/usr/lib/libkvm.a
|
|
LIBL?= ${DESTDIR}/usr/lib/libl.a
|
|
LIBM?= ${DESTDIR}/usr/lib/libm.a
|
|
LIBMP?= ${DESTDIR}/usr/lib/libmp.a
|
|
LIBPC?= ${DESTDIR}/usr/lib/libpc.a
|
|
LIBPCAP?= ${DESTDIR}/usr/lib/libpcap.a
|
|
LIBPLOT?= ${DESTDIR}/usr/lib/libplot.a
|
|
LIBRESOLV?= ${DESTDIR}/usr/lib/libresolv.a
|
|
LIBRPCSVC?= ${DESTDIR}/usr/lib/librpcsvc.a
|
|
LIBSKEY?= ${DESTDIR}/usr/lib/libskey.a
|
|
LIBTERMCAP?= ${DESTDIR}/usr/lib/libtermcap.a
|
|
LIBUTIL?= ${DESTDIR}/usr/lib/libutil.a
|
|
LIBWRAP?= ${DESTDIR}/usr/lib/libwrap.a
|
|
LIBY?= ${DESTDIR}/usr/lib/liby.a
|
|
LIBZ?= ${DESTDIR}/usr/lib/libz.a
|
|
|
|
.if defined(SHAREDSTRINGS)
|
|
CLEANFILES+=strings
|
|
.c.o:
|
|
${CC} -E ${CFLAGS} ${.IMPSRC} | xstr -c -
|
|
@${CC} ${CFLAGS} -c x.c -o ${.TARGET}
|
|
@rm -f x.c
|
|
|
|
.cc.o:
|
|
${CXX} -E ${CXXFLAGS} ${.IMPSRC} | xstr -c -
|
|
@mv -f x.c x.cc
|
|
@${CXX} ${CXXFLAGS} -c x.cc -o ${.TARGET}
|
|
@rm -f x.cc
|
|
|
|
.C.o:
|
|
${CXX} -E ${CXXFLAGS} ${.IMPSRC} | xstr -c -
|
|
@mv -f x.c x.C
|
|
@${CXX} ${CXXFLAGS} -c x.C -o ${.TARGET}
|
|
@rm -f x.C
|
|
.endif
|
|
|
|
|
|
.if defined(PROG)
|
|
SRCS?= ${PROG}.c
|
|
.if !empty(SRCS:N*.h:N*.sh)
|
|
OBJS+= ${SRCS:N*.h:N*.sh:R:S/$/.o/g}
|
|
LOBJS+= ${LSRCS:.c=.ln} ${SRCS:M*.c:.c=.ln}
|
|
.endif
|
|
|
|
.if defined(OBJS) && !empty(OBJS)
|
|
.if defined(DESTDIR)
|
|
|
|
${PROG}: ${LIBCRT0} ${OBJS} ${LIBC} ${DPADD}
|
|
${CC} ${LDFLAGS} ${LDSTATIC} -o ${.TARGET} -nostdlib -L${DESTDIR}/usr/lib ${LIBCRT0} ${OBJS} ${LDADD} -lgcc -lc -lgcc
|
|
|
|
.else
|
|
|
|
${PROG}: ${LIBCRT0} ${OBJS} ${LIBC} ${DPADD}
|
|
${CC} ${LDFLAGS} ${LDSTATIC} -o ${.TARGET} ${OBJS} ${LDADD}
|
|
|
|
.endif # defined(DESTDIR)
|
|
.endif # defined(OBJS) && !empty(OBJS)
|
|
|
|
.if !defined(MAN)
|
|
MAN= ${PROG}.1
|
|
.endif # !defined(MAN)
|
|
.endif # defined(PROG)
|
|
|
|
.MAIN: all
|
|
all: ${PROG} _SUBDIRUSE
|
|
|
|
.if !target(clean)
|
|
cleanprog:
|
|
rm -f a.out [Ee]rrs mklog core *.core \
|
|
${PROG} ${OBJS} ${LOBJS} ${CLEANFILES}
|
|
|
|
clean: _SUBDIRUSE cleanprog
|
|
cleandir: _SUBDIRUSE cleanprog
|
|
.else
|
|
cleandir: _SUBDIRUSE clean
|
|
.endif
|
|
|
|
.if defined(SRCS)
|
|
afterdepend: .depend
|
|
@(TMP=/tmp/_depend$$$$; \
|
|
sed -e 's/^\([^\.]*\).o[ ]*:/\1.o \1.ln:/' \
|
|
< .depend > $$TMP; \
|
|
mv $$TMP .depend)
|
|
.endif
|
|
|
|
.if !target(install)
|
|
.if !target(beforeinstall)
|
|
beforeinstall:
|
|
.endif
|
|
.if !target(afterinstall)
|
|
afterinstall:
|
|
.endif
|
|
|
|
.if !target(realinstall)
|
|
realinstall:
|
|
.if defined(PROG)
|
|
${INSTALL} ${COPY} ${STRIP} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
|
|
${PROG} ${DESTDIR}${BINDIR}
|
|
.endif
|
|
.if defined(HIDEGAME)
|
|
(cd ${DESTDIR}/usr/games; rm -f ${PROG}; ln -s dm ${PROG})
|
|
.endif
|
|
.endif
|
|
|
|
install: maninstall _SUBDIRUSE
|
|
.if defined(LINKS) && !empty(LINKS)
|
|
@set ${LINKS}; \
|
|
while test $$# -ge 2; do \
|
|
l=${DESTDIR}$$1; \
|
|
shift; \
|
|
t=${DESTDIR}$$1; \
|
|
shift; \
|
|
echo $$t -\> $$l; \
|
|
rm -f $$t; \
|
|
ln $$l $$t; \
|
|
done; true
|
|
.endif
|
|
|
|
maninstall: afterinstall
|
|
afterinstall: realinstall
|
|
realinstall: beforeinstall
|
|
.endif
|
|
|
|
.if !target(lint)
|
|
lint: ${LOBJS}
|
|
.if defined(LOBJS) && !empty(LOBJS)
|
|
@${LINT} ${LINTFLAGS} ${LDFLAGS:M-L*} ${LOBJS} ${LDADD}
|
|
.endif
|
|
.endif
|
|
|
|
.if !defined(NOMAN)
|
|
.include <bsd.man.mk>
|
|
.endif
|
|
|
|
.if !defined(NONLS)
|
|
.include <bsd.nls.mk>
|
|
.endif
|
|
|
|
.include <bsd.obj.mk>
|
|
.include <bsd.dep.mk>
|
|
.include <bsd.subdir.mk>
|
|
.include <bsd.sys.mk>
|