File: Makefile

package info (click to toggle)
cvs2cl 2.38-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 220 kB
  • ctags: 23
  • sloc: sh: 1,220; makefile: 69; perl: 46
file content (25 lines) | stat: -rw-r--r-- 544 bytes parent folder | download
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
# There's nothing to `make' here, it's just a Perl script.
# But it is convenient to run the test suite from top-level, and take
# care of the installation common case, web site bureaucracy, etc.

default: test

install:
	cp cvs2cl.pl /usr/local/bin/cvs2cl.pl
	chmod a+x /usr/local/bin/cvs2cl.pl

ChangeLog: log
changelog: log
log:
	./cvs2cl.pl --accum -r -t --fsf -S

web: www

www:
	./make-samples.sh
	./cvs2cl.pl --help > cvs2cl-usage.txt


test:
	@make --silent -C tests
	@echo "Iff this is the only line of output, then all tests passed."