blob: 4126ad2f3245110786e200d5aa51f4c416c0a768 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# $NetBSD: Makefile,v 1.4 2001/12/12 00:51:06 tv Exp $
DIST= ${.CURDIR}/../../crypto/dist
.PATH: ${DIST}/heimdal/lib/vers
MKLINT= # defined
LIB= vers
NOLINKLIB= # defined
NOPIC= # defined
NOPROFILE= # defined
includes: print_version.h
SRCS= print_version.c
DPSRCS= print_version.h
CPPFLAGS+= -I. \
-I${.CURDIR}/../../include/heimdal \
-I${DIST}/heimdal/lib/roken \
-DHAVE_CONFIG_H
HOST_CPPFLAGS+= -I${.CURDIR}/../../include/heimdal -DHAVE_CONFIG_H
make-print-version.lo: ${.CURDIR}/../../include/heimdal/version.h
make-print-version: make-print-version.lo
${HOST_CC} ${HOST_LDFLAGS} -o ${.TARGET} ${.ALLSRC}
print_version.h: make-print-version
./make-print-version print_version.h
print_version.o print_version.ln: print_version.h
CLEANFILES+= print_version.h make-print-version make-print-version.lo
.include <bsd.lib.mk>
|