File: Makefile

package info (click to toggle)
unp 2.0~pre10
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 156 kB
  • sloc: perl: 551; makefile: 51; sh: 7; ansic: 2; fortran: 1
file content (11 lines) | stat: -rw-r--r-- 334 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
FPR=cat | md5sum | cut -c1-32
REF=$(shell perl ./ucat test/sample.a | $(FPR))

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)`

.PHONY: test