2001-08-03 15:35:28 +04:00
|
|
|
# Makefile.dist
|
|
|
|
#
|
2005-08-11 21:13:21 +04:00
|
|
|
# Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC")
|
|
|
|
# Copyright (c) 1996-2003 by Internet Software Consortium
|
2001-08-03 15:35:28 +04:00
|
|
|
#
|
2005-08-11 21:13:21 +04:00
|
|
|
# Permission to use, copy, modify, and distribute this software for any
|
|
|
|
# purpose with or without fee is hereby granted, provided that the above
|
|
|
|
# copyright notice and this permission notice appear in all copies.
|
2001-08-03 15:35:28 +04:00
|
|
|
#
|
2005-08-11 21:13:21 +04:00
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES
|
|
|
|
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR
|
|
|
|
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
|
|
|
|
# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
2001-08-03 15:35:28 +04:00
|
|
|
#
|
2005-08-11 21:13:21 +04:00
|
|
|
# Internet Systems Consortium, Inc.
|
|
|
|
# 950 Charter Street
|
|
|
|
# Redwood City, CA 94063
|
|
|
|
# <info@isc.org>
|
|
|
|
# http://www.isc.org/
|
2001-08-03 15:35:28 +04:00
|
|
|
|
|
|
|
SRC = dst_support.c dst_api.c hmac_link.c md5_dgst.c base64.c prandom.c
|
|
|
|
OBJ = dst_support.o dst_api.o hmac_link.o md5_dgst.o base64.o prandom.o
|
|
|
|
HDRS = dst_internal.h md5.h md5_locl.h
|
|
|
|
|
|
|
|
INCLUDES = $(BINDINC) -I$(TOP)/includes
|
|
|
|
CFLAGS = $(DEBUG) $(PREDEFINES) $(INCLUDES) $(COPTS) -DHMAC_MD5 -DMINIRES_LIB
|
|
|
|
|
|
|
|
all: libdst.a
|
|
|
|
|
|
|
|
install:
|
|
|
|
|
|
|
|
libdst.a: $(OBJ)
|
|
|
|
rm -f dst.a
|
|
|
|
ar cruv libdst.a $(OBJ)
|
|
|
|
$(RANLIB) libdst.a
|
|
|
|
|
|
|
|
depend:
|
|
|
|
$(MKDEP) $(INCLUDES) $(PREDEFINES) $(SRC)
|
|
|
|
|
|
|
|
clean:
|
|
|
|
-rm -f $(OBJ) libdst.a
|
|
|
|
|
|
|
|
realclean: clean
|
|
|
|
-rm -f *~ $(CATMANPAGES) $(SEDMANPAGES)
|
|
|
|
|
|
|
|
distclean: realclean
|
|
|
|
-rm -f Makefile
|
|
|
|
|
|
|
|
links:
|
|
|
|
@for foo in $(SRC) $(MAN) $(HDRS); do \
|
|
|
|
if [ ! -b $$foo ]; then \
|
|
|
|
rm -f $$foo; \
|
|
|
|
fi; \
|
|
|
|
ln -s $(TOP)/dst/$$foo $$foo; \
|
|
|
|
done
|
|
|
|
# Dependencies (semi-automatically-generated)
|