File: Makefile

package info (click to toggle)
hashdeep 4.4%2Bgit20170824%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 11,320 kB
  • sloc: cpp: 5,061; ansic: 3,872; sh: 3,395; makefile: 162
file content (31 lines) | stat: -rw-r--r-- 755 bytes parent folder | download | duplicates (6)
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
# This Makefile is separate from the autotools files in the
# top level directory. It is used only to clean up and
# publish files for the public web site.
#
# $Id: Makefile 252 2010-12-17 17:33:34Z jessekornblum $
#

ALL_FILES = index.html style.css \
	    changes.txt \
	    md5deep.html start-md5deep.html \
	    hashdeep.html start-hashdeep.html


USERNAME = jessekornblum,md5deep
DESTDIR  = web.sourceforge.net:htdocs/

preflight:
	rm -f *~
	grep RBF *.html *.txt

manpages:
	rman -f HTML -S -l "md5deep man page" ../man/md5deep.1 > md5deep.html
	rman -f HTML -S -l "hashdeep man page" ../man/hashdeep.1 > hashdeep.html

changes:
	cp ../NEWS changes.txt

publish:
	rsync -avP -e ssh $(ALL_FILES) $(USERNAME)@$(DESTDIR)

all: manpages changes publish