home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 October
/
usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso
/
misc
/
volume39
/
agetty
/
part01
/
Makefile
< prev
next >
Wrap
Makefile
|
1993-08-23
|
448b
|
22 lines
# @(#) Makefile 1.5 9/1/91 23:21:21
# On the CFLAGS line, specify -DUSE_SYSLOG if you want diagnostics to be
# reported via the syslog(3) facility. Otherwise, agetty will report its
# problems to /dev/console.
SHELL = /bin/sh
CFLAGS = -s -O # -DUSE_SYSLOG
FILES = README agetty.c agetty.8 Makefile
agetty: agetty.c
$(CC) $(CFLAGS) -o $@ $?
clean:
rm -f agetty.o agetty
shar: $(FILES)
@shar $(FILES)
agetty.8:
srctoman agetty.c >agetty.8