source: trunk/athena/bin/ansi/Makefile @ 6

Revision 6, 568 bytes checked in by builder, 39 years ago (diff)
Initial revision
Line 
1#
2#       $Source: /afs/dev.mit.edu/source/repository/athena/bin/ansi/Makefile,v $
3#       $Author: builder $
4#       $Locker:  $
5#       $Header: /afs/dev.mit.edu/source/repository/athena/bin/ansi/Makefile,v 1.1 1985-04-12 15:28:59 builder Exp $
6#
7
8
9DESTDIR=
10CONFDIR= /usr/athena
11INCDIR= /usr/include
12CFLAGS = -O -I${INCDIR}
13
14all: ansi unseg
15
16ansi: ansi.o
17        cc $(CFLAGS) -o ansi ansi.o
18
19unseg: unseg.o
20        cc $(CFLAGS) -o unseg unseg.o
21
22install: all
23        install -c -s ansi ${DESTDIR}${CONFDIR}/ansi
24        install -c -s unseg ${DESTDIR}${CONFDIR}/unseg
25
26clean:
27        rm -f ansi unseg *.o core a.out *.bak *~
Note: See TracBrowser for help on using the repository browser.