1CFLAGS = -g
2
3cursive: cursive.o font.o
4	cc -g -o lcursive cursive.o font.o
5
6# If your system is old enough to have the xstr command, then using it will
7# probably help.  So build 'xcursive' instead of 'cursive'
8
9xcursive: cursive.o x.o xs.o
10	cc -g -o cursive cursive.o x.o xs.o
11
12x.c: font.c
13	xstr font.c
14
15xs.c: font.c
16	xstr font.c
17
18cursive.shar: cursive.c font.c cursive.h cursive.6 Makefile shar
19	shar cursive.c font.c cursive.h cursive.6 Makefile shar > cursive.shar
20
21cursive.tar: cursive.c font.c cursive.h cursive.6 Makefile shar
22	tar cvf cursive.tar cursive.c font.c cursive.h cursive.6 Makefile shar
23
24