freebsd-dev/usr.bin/file/Makefile
David E. O'Brien 5576244cd6 Use the vendor's manpages (which are in old -man format) rather than
our modified one based on a much older version of the vendor's manpage.
2000-11-26 22:19:56 +00:00

72 lines
2.1 KiB
Makefile

# Makefile for file(1) cmd.
# Copyright (c) Ian F. Darwin 86/09/01 - see LEGAL.NOTICE.
# @(#)$FreeBSD$
#
# This software is not subject to any license of the American Telephone
# and Telegraph Company or of the Regents of the University of California.
#
# Permission is granted to anyone to use this software for any purpose on
# any computer system, and to alter it and redistribute it freely, subject
# to the following restrictions:
#
# 1. The author is not responsible for the consequences of use of this
# software, no matter how awful, even if they arise from flaws in it.
#
# 2. The origin of this software must not be misrepresented, either by
# explicit claim or by omission. Since few users ever read sources,
# credits must appear in the documentation.
#
# 3. Altered versions must be plainly marked as such, and must not be
# misrepresented as being the original software. Since few users
# ever read sources, credits must appear in the documentation.
#
# 4. This notice may not be removed or altered.
#
# Hacked and dismembered for bmake (Geoff Rehmet).
MAGICFILE= /usr/share/misc/magic
MAGICMODE= 444
SRCDIR= ${.CURDIR}/../../contrib/file
.PATH: ${SRCDIR}
CFLAGS+= -DMAGIC='"$(MAGICFILE)"' -DBUILTIN_ELF -DELFCORE -DHAVE_CONFIG_H
CFLAGS+= -I${.CURDIR}
PROG= file
SRCS= file.c apprentice.c fsmagic.c softmagic.c ascmagic.c \
compress.c is_tar.c readelf.c print.c
# compress.c is_tar.c readelf.c internat.c print.c
MAN1= file.1
MAN5= magic.5
CLEANFILES+= magic file.1 magic.5 version
MAGFILES= ${SRCDIR}/Header\
${SRCDIR}/Localstuff\
${SRCDIR}/Magdir/[a-z]*
all: file magic
magic: $(MAGFILES)
cat $(MAGFILES) > $(.TARGET)
version: Makefile.std
@sed '/.*VERSION.*=[ ]*/s///w ${.TARGET}' ${.ALLSRC} > /dev/null
.for MP in file.1 magic.5
${MP}: ${SRCDIR}/${MP:C/[0-9]$/man/} version
sed -e 's|__CSECTION__|1|g'\
-e 's|__FSECTION__|5|g'\
-e 's|__MAGIC__|${MAGICFILE}|g'\
-e "s|__VERSION__|`cat version`|g"\
${SRCDIR}/${MP:C/[0-9]$/man/} > ${.TARGET}
.endfor
beforeinstall:
$(INSTALL) $(COPY) -o $(BINOWN) -g $(BINGRP) -m $(MAGICMODE) \
magic $(DESTDIR)$(MAGICFILE)
.include <bsd.prog.mk>