change getshort() and getlong() to _getshort() and _getlong()
[unix-history] / usr / src / libexec / getty / Makefile
CommitLineData
810b1430
DF
1#
2# Copyright (c) 1980 Regents of the University of California.
3# All rights reserved. The Berkeley software License Agreement
4# specifies the terms and conditions for redistribution.
5#
6# @(#)Makefile 5.1 (Berkeley) %G%
e7c962ec
SL
7#
8DESTDIR=
9CFLAGS= -O
08c012d4 10OBJS= main.o init.o subr.o gettytab.o get_date.o
e7c962ec
SL
11
12all: getty
13
14getty: ${OBJS}
15 ${CC} -o getty ${OBJS}
16
17install: all
18 install -s getty ${DESTDIR}/etc/getty
08c012d4 19 install -c -m 444 gettytab ${DESTDIR}/etc/gettytab
e7c962ec
SL
20
21clean:
22 rm -f getty ${OBJS} a.out core errs
23
24main.o: gettytab.h
25init.o: gettytab.h
26subr.o: gettytab.h