source: trunk/athena/bin/login/Makefile @ 2266

Revision 2266, 632 bytes checked in by probe, 35 years ago (diff)
Fixed "depend"... it was making dependencies for "login.o" instead of "login"
Line 
1#       Makefile for login
2#       MIT Project Athena
3#
4#       $Source: /afs/dev.mit.edu/source/repository/athena/bin/login/Makefile,v $
5#       $Header: /afs/dev.mit.edu/source/repository/athena/bin/login/Makefile,v 1.6 1989-11-11 03:47:13 probe Exp $
6#
7#
8#
9
10DESTDIR=
11CFLAGS= -O -DRVD -DNAMESERVER -DVFS
12
13all: login
14login: login.c
15        ${CC} ${CFLAGS} -o login login.c -lknet -lkrb -ldes -lhesiod
16clean:
17        rm -f *.o login core *~
18install: login
19        install -c -s -o root -m 4555 login ${DESTDIR}/bin/login
20depend:
21        makedepend -s "# DO NOT REMOVE THIS LINE -- make depend uses it" \
22                -o "" ${CFLAGS} login.c
23
24# DO NOT REMOVE THIS LINE -- make depend uses it
Note: See TracBrowser for help on using the repository browser.