freebsd_amp_hwpstate/share/mk/bsd.prog.mk

159 lines
3.5 KiB
Makefile
Raw Normal View History

# from: @(#)bsd.prog.mk 5.26 (Berkeley) 6/25/91
# $Id: bsd.prog.mk,v 1.44 1997/02/22 13:56:13 peter Exp $
1994-05-30 19:09:18 +00:00
.if exists(${.CURDIR}/../Makefile.inc)
1994-05-30 19:09:18 +00:00
.include "${.CURDIR}/../Makefile.inc"
.endif
.SUFFIXES: .out .o .c .cc .cxx .C .y .l .s .S
1994-05-30 19:09:18 +00:00
CFLAGS+=${COPTS} ${DEBUG_FLAGS}
.if defined(DESTDIR)
CFLAGS+= -I${DESTDIR}/usr/include
CXXINCLUDES+= -I${DESTDIR}/usr/include/${CXX}
.endif
1994-05-30 19:09:18 +00:00
.if !defined(DEBUG_FLAGS)
1994-05-30 19:09:18 +00:00
STRIP?= -s
.endif
1994-05-30 19:09:18 +00:00
.if defined(NOSHARED)
LDFLAGS+= -static
.endif
1994-05-30 19:09:18 +00:00
.if defined(DESTDIR)
LDDESTDIR+= -L${DESTDIR}/usr/lib
1994-05-30 19:09:18 +00:00
.endif
.include <bsd.libnames.mk>
1994-05-30 19:09:18 +00:00
.if defined(PROG)
.if defined(SRCS)
DPSRCS+= ${SRCS:M*.h}
OBJS+= ${SRCS:N*.h:R:S/$/.o/g}
.if defined(LDONLY)
1994-05-30 19:09:18 +00:00
${PROG}: ${LIBCRT0} ${LIBC} ${DPSRCS} ${OBJS} ${DPADD}
${LD} ${LDFLAGS} -o ${.TARGET} ${LIBCRT0} ${OBJS} ${LIBC} ${LDDESTDIR} \
${LDADD}
1994-05-30 19:09:18 +00:00
.else defined(LDONLY)
${PROG}: ${DPSRCS} ${OBJS} ${LIBC} ${DPADD}
${CC} ${CFLAGS} ${LDFLAGS} -o ${.TARGET} ${OBJS} ${LDDESTDIR} ${LDADD}
.endif
.else !defined(SRCS)
1994-05-30 19:09:18 +00:00
SRCS= ${PROG}.c
1994-05-30 19:09:18 +00:00
.if 0
${PROG}: ${DPSRCS} ${SRCS} ${LIBC} ${DPADD}
${CC} ${LDFLAGS} ${CFLAGS} -o ${.TARGET} ${.CURDIR}/${SRCS} \
${LDDESTDIR} ${LDADD}
MKDEP= -p
.else
# Always make an intermediate object file because:
# - it saves time rebuilding when only the library has changed
# - the name of the object gets put into the executable symbol table instead of
# the name of a variable temporary object.
# - it's useful to keep objects around for crunching.
OBJS= ${PROG}.o
${PROG}: ${DPSRCS} ${OBJS} ${LIBC} ${DPADD}
${CC} ${CFLAGS} ${LDFLAGS} -o ${.TARGET} ${OBJS} ${LDDESTDIR} ${LDADD}
.endif
1994-05-30 19:09:18 +00:00
.endif
.if !defined(MAN1) && !defined(MAN2) && !defined(MAN3) && \
!defined(MAN4) && !defined(MAN5) && !defined(MAN6) && \
!defined(MAN7) && !defined(MAN8) && !defined(NOMAN)
MAN1= ${PROG}.1
1994-05-30 19:09:18 +00:00
.endif
.endif
# XXX I think MANDEPEND is only used for groff. It should be named more
# generally and perhaps not be in the maninstall dependencies now it is
# here (or does maninstall always work when nothing is made?),
1994-05-30 19:09:18 +00:00
.MAIN: all
all: objwarn ${PROG} all-man _SUBDIR
1994-05-30 19:09:18 +00:00
.if !target(clean)
clean: _SUBDIR
rm -f a.out Errs errs mklog ${PROG} ${OBJS} ${CLEANFILES}
.if defined(CLEANDIRS) && !empty(CLEANDIRS)
rm -rf ${CLEANDIRS}
.endif
1994-05-30 19:09:18 +00:00
.endif
.if !target(install)
.if !target(beforeinstall)
beforeinstall:
.endif
realinstall: beforeinstall
1994-05-30 19:09:18 +00:00
.if defined(PROG)
${INSTALL} ${COPY} ${STRIP} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
${INSTALLFLAGS} ${PROG} ${DESTDIR}${BINDIR}
1994-05-30 19:09:18 +00:00
.endif
.if defined(HIDEGAME)
(cd ${DESTDIR}/usr/games; rm -f ${PROG}; ln -s dm ${PROG}; \
chown games:bin ${PROG})
1994-05-30 19:09:18 +00:00
.endif
.if defined(LINKS) && !empty(LINKS)
@set ${LINKS}; \
while test $$# -ge 2; do \
l=${DESTDIR}$$1; \
shift; \
t=${DESTDIR}$$1; \
shift; \
${ECHO} $$t -\> $$l; \
1994-05-30 19:09:18 +00:00
rm -f $$t; \
ln ${LN_FLAGS} $$l $$t; \
1994-05-30 19:09:18 +00:00
done; true
.endif
install: afterinstall _SUBDIR
.if !defined(NOMAN)
afterinstall: realinstall maninstall
.else
1994-05-30 19:09:18 +00:00
afterinstall: realinstall
.endif
1994-05-30 19:09:18 +00:00
.endif
DISTRIBUTION?= bin
.if !target(distribute)
distribute: _SUBDIR
cd ${.CURDIR} ; $(MAKE) install DESTDIR=${DISTDIR}/${DISTRIBUTION} SHARED=copies
.endif
1994-05-30 19:09:18 +00:00
.if !target(lint)
lint: ${SRCS} _SUBDIR
1994-05-30 19:09:18 +00:00
.if defined(PROG)
@${LINT} ${LINTFLAGS} ${CFLAGS} ${.ALLSRC} | more 2>&1
.endif
.endif
.if !target(tags)
tags: ${SRCS} _SUBDIR
1994-05-30 19:09:18 +00:00
.if defined(PROG)
-cd ${.CURDIR}; ctags -f /dev/stdout ${.ALLSRC} | \
sed "s;\${.CURDIR}/;;" > tags
1994-05-30 19:09:18 +00:00
.endif
.endif
.if !defined(NOMAN)
.include <bsd.man.mk>
.elif !target(maninstall)
1994-05-30 19:09:18 +00:00
maninstall:
all-man:
1994-05-30 19:09:18 +00:00
.endif
.include <bsd.dep.mk>
.include <bsd.obj.mk>