File: Makefile

package info (click to toggle)
unp 2.0
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 168 kB
  • sloc: perl: 610; makefile: 55; sh: 7
file content (16 lines) | stat: -rw-r--r-- 369 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FPR=cat | md5sum | cut -c1-32
REF=$(shell perl ./ucat test/sample_a | $(FPR))

all: i18n test

test:
	test $(REF) = `./ucat test/sample_b | $(FPR)`
	test $(REF) = `./ucat test/sample_c | $(FPR)`
	test $(REF) = `./ucat test/sample_d | $(FPR)`
	test $(REF) = `./ucat test/sample_e | $(FPR)`
	test $(REF) = `./ucat test/sample_f | $(FPR)`

i18n:
	make -C po

.PHONY: test