45 lines
879 B
Makefile
45 lines
879 B
Makefile
#
|
|
# @(#)Makefile 1.1 94/10/31 SMI; from UCB 1.4 05/04/82
|
|
#
|
|
#ifndef lint
|
|
#
|
|
# error.h error header file
|
|
# errorinput.c does all of the input, and canonicalizes errors
|
|
# errorpi.c canonicalizes pi errors
|
|
# errormain.c main
|
|
# errorsubr.c does grotty subroutine work
|
|
# errorfilter.c "greps" out unwanted messages
|
|
# errortouch.c touches all mentioned files
|
|
#
|
|
|
|
HDRS = error.h
|
|
PHDRS = $(HDRS)
|
|
SRCS = errormain.c errorinput.c errorpi.c errorsubr.c errorfilter.c errortouch.c
|
|
PSRCS = $(SRCS)
|
|
OBJS = errormain.o errorinput.o errorpi.o errorsubr.o errorfilter.o errortouch.o
|
|
|
|
DFLAGS = -DDEBUG
|
|
CFLAGS = -O $(DFLAGS)
|
|
|
|
LINTFLAGS = $(DFLAGS)
|
|
|
|
error: $(OBJS)
|
|
$(CC) $(CFLAGS) $(OBJS) -o error
|
|
|
|
$(OBJS): $(HDRS)
|
|
|
|
install:
|
|
install -s error $(DESTDIR)/usr/ucb
|
|
|
|
clean:
|
|
rm -f error $(OBJS)
|
|
|
|
lint:
|
|
lint $(LINTFLAGS) $(SRCS)
|
|
|
|
psrcs:
|
|
echo $(PHDRS) $(PSRCS)
|
|
|
|
print:
|
|
print $(PHDRS) $(PSRCS)
|