source: trunk/athena/bin/tarmail/Makefile @ 2097

Revision 2097, 902 bytes checked in by epeisach, 35 years ago (diff)
Fixed depend line.
Line 
1#
2#       $Source: /afs/dev.mit.edu/source/repository/athena/bin/tarmail/Makefile,v $
3#       $Author: epeisach $
4#       $Locker:  $
5#       $Header: /afs/dev.mit.edu/source/repository/athena/bin/tarmail/Makefile,v 1.10 1989-09-16 12:54:56 epeisach Exp $
6#
7DESTDIR=
8INCDIR=/usr/include
9CFLAGS=-O -I${INCDIR}
10
11all:    btoa atob
12
13install:        atob btoa tarmail untarmail
14        install -c -s btoa ${DESTDIR}/usr/athena
15        install -c -s atob ${DESTDIR}/usr/athena
16        install -c tarmail ${DESTDIR}/usr/athena
17        install -c untarmail ${DESTDIR}/usr/athena
18        install -c btoa.1 ${DESTDIR}/usr/man/man1
19        install -c tarmail.1 ${DESTDIR}/usr/man/man1
20        install -c atob.1 ${DESTDIR}/usr/man/man1
21
22btoa:
23        cc ${CFLAGS} btoa.c -o btoa
24
25atob:
26        cc ${CFLAGS} atob.c -o atob
27
28clean:         
29        rm -f atob btoa *.o
30
31depend:
32        mkdep -p ${CFLAGS} btoa.c atob.c
33
34# DO NOT DELETE THIS LINE -- mkdep uses it.
35
36btoa: btoa.c /usr/include/stdio.h
37atob: atob.c /usr/include/stdio.h
Note: See TracBrowser for help on using the repository browser.