source: trunk/athena/bin/just/Makefile @ 2093

Revision 2093, 701 bytes checked in by epeisach, 35 years ago (diff)
Added depend line.
Line 
1#
2#       $Source: /afs/dev.mit.edu/source/repository/athena/bin/just/Makefile,v $
3#       $Author: epeisach $
4#       $Locker:  $
5#       $Header: /afs/dev.mit.edu/source/repository/athena/bin/just/Makefile,v 1.3 1989-09-16 12:40:06 epeisach Exp $
6#
7
8
9DESTDIR=
10CONFDIR= /usr/athena
11INCDIR= /usr/include
12CFLAGS = -O -I${INCDIR}
13
14all: just fill
15
16fill: just
17
18just: just.o
19        cc $(CFLAGS) -o just just.o
20
21install: all
22        install -c -s just ${DESTDIR}${CONFDIR}/just
23        rm -f ${DESTDIR}${CONFDIR}/fill
24        ln ${DESTDIR}${CONFDIR}/just ${DESTDIR}${CONFDIR}/fill
25
26clean:
27        rm -f just *.o core a.out *.bak *~
28
29depend:
30        makedepend ${CFLAGS} just.c
31
32# DO NOT DELETE THIS LINE -- make depend depends on it.
33
34just.o: just.c /usr/include/stdio.h
Note: See TracBrowser for help on using the repository browser.