BSD 4 development
[unix-history] / usr / src / cmd / troff / Makenroff
CommitLineData
eb2cc5c4
BJ
1CFLAGS = -O -DNROFF -DVMUNIX
2c = ni.o nii.o n1.o n2.o n3.o n4.o n5.o n6.o n7.o n8.o n9.o n10.o
3s = hytab.o ntab.o suftab.o
4nroff : $c $s
5 $(CC) -z -o nroff $s $c
6hytab.o : hytab.c
7 cc -S hytab.c
8 /usr/src/cmd/as/:rofix hytab.s
9 as -o hytab.o hytab.s
10 rm hytab.s
11ntab.o: ntab.c
12 cc -S ntab.c
13 /usr/src/cmd/as/:rofix ntab.s
14 as -o ntab.o ntab.s
15 rm ntab.s
16suftab.o: suftab.c
17 cc -S suftab.c
18 /usr/src/cmd/as/:rofix suftab.s
19 as -o suftab.o suftab.s
20 rm suftab.s
21
22install :
23 install -s nroff /usr/bin
24clean :
25 rm -f *.o