freebsd-dev/kerberos5/lib/libvers/Makefile
Mark Murray 069b88eb3a Big fixup of the makefiles. Sort out the dependancies so that "make"
without "make depend" works, "make -j N" works, and lists of source
files are made vertical to reduce future diffs.
2003-07-18 13:21:58 +00:00

29 lines
506 B
Makefile

# $FreeBSD$
LIB= vers
SRCS= \
print_version.c \
${.OBJDIR}/print_version.h
CFLAGS+=-I${KRB5DIR}/include \
-I${ROKENOBJDIR} \
-I${KRB5DIR}/lib/roken \
-I${.OBJDIR}
INTERNALLIB= YES
.include <bsd.lib.mk>
.PATH: ${KRB5DIR}/lib/vers
build-tools: make-print-version
${.OBJDIR}/print_version.h: make-print-version
./make-print-version print_version.h
make-print-version: make-print-version.c
${CC} ${CFLAGS} -static -o ${.TARGET} ${.OODATE}
CLEANFILES+= make-print-version print_version.h