blob: 067c99bd00b336909d292cef9b073a544b310928 (
plain)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# $FreeBSD$
PROG= playvt
NO_MAN=
DEMOS= chardemo.vt colors.vt sgr.vt
DEMOS+= outerlimit.vt twzone.vt cowscene.vt xmas.vt
CLEANFILES+= ${DEMOS}
all: $(DEMOS) $(PROG)
install:
@${ECHO} "to look at the demos, execute:"
@${ECHO} " \"cat <filename>.vt\""
@${ECHO} "if it is an animation and it runs too fast, try out:"
@${ECHO} " \"playvt -f <filename>.vt -d<some-delay-val>\""
.include <bsd.prog.mk>
# this seems to be the lowest common denominator
chardemo.vt: ${.CURDIR}/${.TARGET}.gz.uu
uudecode ${.CURDIR}/${.TARGET}.gz.uu
gunzip -f ${.TARGET}.gz
rm -f ${.TARGET}.gz
colors.vt: ${.CURDIR}/${.TARGET}.gz.uu
uudecode ${.CURDIR}/${.TARGET}.gz.uu
gunzip -f ${.TARGET}.gz
rm -f ${.TARGET}.gz
sgr.vt: ${.CURDIR}/${.TARGET}.gz.uu
uudecode ${.CURDIR}/${.TARGET}.gz.uu
gunzip -f ${.TARGET}.gz
rm -f ${.TARGET}.gz
cowscene.vt: ${.CURDIR}/${.TARGET}.gz.uu
uudecode ${.CURDIR}/${.TARGET}.gz.uu
gunzip -f ${.TARGET}.gz
rm -f ${.TARGET}.gz
xmas.vt: ${.CURDIR}/${.TARGET}.gz.uu
uudecode ${.CURDIR}/${.TARGET}.gz.uu
gunzip -f ${.TARGET}.gz
rm -f ${.TARGET}.gz
outerlimit.vt: ${.CURDIR}/${.TARGET}.gz.uu
uudecode ${.CURDIR}/${.TARGET}.gz.uu
gunzip -f ${.TARGET}.gz
rm -f ${.TARGET}.gz
twzone.vt: ${.CURDIR}/${.TARGET}.gz.uu
uudecode ${.CURDIR}/${.TARGET}.gz.uu
gunzip -f ${.TARGET}.gz
rm -f ${.TARGET}.gz
|