home *** CD-ROM | disk | FTP | other *** search
Makefile | 1992-01-03 | 972 b | 47 lines |
- #
- # Makefile for hostcvt and nextserial
- #
- # $Id: Makefile,v 1.4 91/11/25 17:44:43 rogers Release $
- #
-
- BINDIR = /etc/named_data/bin
- MANDIR = /usr/manl/man8
-
- CFLAGS = -O
- LDFLAGS = -s
-
- all : hostcvt nextserial
-
- hostcvt : main.o gethostent.o egetopt.o
- cc $(LDFLAGS) -o hostcvt main.o gethostent.o egetopt.o
-
- nextserial : nextserial.c
- cc $(CFLAGS) $(LDFLAGS) -o nextserial nextserial.c
-
- egetopt : egetopt.c
- cc $(CFLAGS) $(LDFLAGS) -c egetopt.c
-
-
- install : $(BINDIR)/hostcvt $(BINDIR)/nextserial \
- $(MANDIR)/hostcvt.8 $(MANDIR)/nextserial.8
-
- $(BINDIR)/hostcvt : hostcvt
- install -c -m 0755 hostcvt $(BINDIR)
-
- $(BINDIR)/nextserial : nextserial
- install -c -m 0755 nextserial $(BINDIR)
-
- $(MANDIR)/hostcvt.8 : hostcvt.8
- install -c -m 0644 hostcvt.8 $(MANDIR)
-
- $(MANDIR)/nextserial.8 : nextserial.8
- install -c -m 0644 nextserial.8 $(MANDIR)
-
- lint : main.c gethostent.c nextserial.c
- lint main.c gethostent.c
- lint nextserial.c
-
- clean :
- rm -f hostcvt nextserial *.o make.out
-
-