home *** CD-ROM | disk | FTP | other *** search
Makefile | 1991-07-14 | 385 b | 21 lines |
- # @(#) Makefile 1.4 12/22/90 19:46:03
-
- # On the CFLAGS line, specify -DUSE_SYSLOG if you want diagnistocs to be
- # reported via the syslog(3) facility.
-
- 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
-