/usr/share/doc/htp/examples/Makefile is in htp 1.16-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | #
# makefile - htp
#
# HTML pre-processor
# Copyright (c) 2002 Jochen Hoenicke
#
TOP=..
#
# object files used
#
HTP_DEF = htp.def section.def section.htt
HTP_SRC = beer.htp prime.htp quine.htp section.htp
HTML = $(HTP_SRC:%.htp=%.html)
DISTFILES = Makefile $(HTP_SRC) $(HTP_DEF)
include $(TOP)/Makefile.config
all: run-htp
do-clean:
rm -f *~ htp.rsp *.html
|