File: Makefile

package info (click to toggle)
utfcheck 1.2-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,360 kB
  • sloc: lex: 472; sh: 262; ansic: 130; makefile: 42
file content (20 lines) | stat: -rw-r--r-- 343 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

#
# Note: this is run by hand by the package maintainer
# to compile gen-utf.c and run it to create the input
# files for testing.  It is not expected to be run by
# an end user.
#
all: gen-utf
	./gen-utf
	\rm -f *.txt.gz
	for i in *.txt ; do \
	   gzip -9 $$i ; \
	done

clean:
	\rm -f gen-utf

distclean: clean

.PHONY: all clean distclean