]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - usr.bin/file/Makefile
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / usr.bin / file / Makefile
1 # $FreeBSD$
2 # Makefile for file(1) cmd.
3 # Copyright (c) David E. O'Brien, 2000-2004, 2009
4 # Copyright (c) Ian F. Darwin 86/09/01 - see LEGAL.NOTICE.
5 #
6 # This software is not subject to any license of the American Telephone
7 # and Telegraph Company or of the Regents of the University of California.
8 #
9 # Permission is granted to anyone to use this software for any purpose on
10 # any computer system, and to alter it and redistribute it freely, subject
11 # to the following restrictions:
12 #
13 # 1. The author is not responsible for the consequences of use of this
14 #    software, no matter how awful, even if they arise from flaws in it.
15 # 2. The origin of this software must not be misrepresented, either by
16 #    explicit claim or by omission.  Since few users ever read sources,
17 #    credits must appear in the documentation.
18 # 3. Altered versions must be plainly marked as such, and must not be
19 #    misrepresented as being the original software.  Since few users
20 #    ever read sources, credits must appear in the documentation.
21 # 4. This notice may not be removed or altered.
22
23 SRCDIR= ${.CURDIR}/../../contrib/file
24 .PATH: ${SRCDIR}/src
25 .PATH: ${SRCDIR}/doc
26
27 PROG=   file
28
29 MAGICPATH?=     /usr/share/misc
30
31 CFLAGS+= -DMAGIC='"${MAGICPATH}/magic"' -DHAVE_CONFIG_H
32 CFLAGS+= -I${.CURDIR}/../../lib/libmagic
33
34 DPADD=  ${LIBMAGIC} ${LIBZ}
35 LDADD=  -lmagic -lz
36
37 FILEVER!= awk '$$1 == "\#define" && $$2 == "VERSION" { print $$3; exit }' \
38                         ${.CURDIR}/../../lib/libmagic/config.h
39
40 CLEANFILES+=    ${MAN}
41
42 .include <bsd.prog.mk>
43
44 .for mp in ${MAN}
45 ${mp}: ${mp:C/[0-9]/man/}
46         sed -e 's/__FSECTION__/5/g' -e 's/__CSECTION__/1/g' \
47                 -e 's/__VERSION__/${FILEVER}/g' \
48                 -e 's,__MAGIC__,${MAGICPATH}/magic,g' ${.ALLSRC} > ${.TARGET}
49 .endfor