freebsd-dev/gnu/libexec/uucp/contrib/Makefile.uurt

41 lines
762 B
Makefile
Raw Normal View History

1997-02-22 15:28:58 +00:00
# $Id$
1994-05-07 18:14:43 +00:00
# Makefile for uurate 1.10
1993-08-05 18:28:27 +00:00
#
1994-05-07 18:14:43 +00:00
# Prefix directory for installation directories.
prefix = /usr/local
# Directory where the needed .h files are installed (uucp.h ...).
uucpsrcs = ../
1993-08-05 18:28:27 +00:00
# Where uurate is installed
1994-05-07 18:14:43 +00:00
BIN=$(prefix)/bin
# Where uurate's man is installed
MAN=$(prefix)/man/man1
# The directory to look in for Taylor style configuration files
newconfigdir = $(prefix)/conf/uucp
1993-08-05 18:28:27 +00:00
# Flags to use when compiling uurate
1994-05-07 18:14:43 +00:00
CC=gcc -O2
CFLAGS=-I.. -Wall
LDFLAGS=-s
1993-08-05 18:28:27 +00:00
SHELL=/bin/sh
PROGS=uurate
#-----------
1994-05-07 18:14:43 +00:00
MORECFLAGS= -I. -I$(uucpsrcs) -DNEWCONFIGLIB=\"$(newconfigdir)\"
1993-08-05 18:28:27 +00:00
all: $(PROGS)
1994-05-07 18:14:43 +00:00
uurate: uurate.c
$(CC) $(CFLAGS) $(MORECFLAGS) $@.c -o $@ $(LDFLAGS)
1993-08-05 18:28:27 +00:00
install: $(PROGS)
1994-05-07 18:14:43 +00:00
cp $(PROGS) $(BIN)
cp uurate.man $(MAN)/uurate.1
1993-08-05 18:28:27 +00:00
clean:
rm -f $(PROGS) core