File: Makefile

package info (click to toggle)
po4a 0.34-2
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 5,132 kB
  • ctags: 270
  • sloc: perl: 9,632; xml: 193; sh: 118; makefile: 73
file content (22 lines) | stat: -rw-r--r-- 333 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
all: Build
	@./Build

Build: Build.PL
	perl Build.PL

install: Build
	@./Build install destdir=$(DESTDIR)

clean: Build
	@./Build realclean

dist: Build
	@./Build dist

stats: Build
	@./Build postats

check:
	script -c 'perl -V;perl Build.PL;./Build clean;./Build test verbose=1' po4a.log

.PHONY: all install clean dist stats check