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