#
# $Name: release2_0-12 $
# $Id: Makefile,v 1.44 2002/03/15 01:01:41 ttsai Exp $
#
# Copyright (C) 2000 Avaya Labs, Avaya Inc.
# Copyright (C) 1999 Bell Labs, Lucent Technologies.
# Copyright (C) Arash Baratloo, Timothy Tsai, and Navjot Singh.
# 
# This file is part of the Libsafe library.
# Libsafe version 2.x: protecting against stack smashing attacks.
# 
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
# 
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.
# 
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
# For more information, 
# 
#   visit http://www.research.avayalabs.com/project/libsafe/index.html
#   or email libsafe@research.avayalabs.com


MAJOR_VERSION	= 2
MINOR_VERSION	= 0
PATCHLEVEL	= 12

VERSION		= $(MAJOR_VERSION).$(MINOR_VERSION).$(PATCHLEVEL)

LIBNAME		= libsafe.so.$(VERSION)
LIBLINK		= libsafe.so.$(MAJOR_VERSION)
LIBDIR		= /lib

MANNAME		= ../doc/libsafe.8
MANDIR		= /usr/man/man8

CC		= gcc
CPP		= g++
DEPEND		= gcc -M
RANLIB		= ranlib
INSTALL		= install

LIBPRELUDE_LIBS = $(shell if (libprelude-config --libs >/dev/null 2>&1); then libprelude-config --libs; fi)
LIBPRELUDE_CFLAGS = $(shell if (libprelude-config --cflags >/dev/null 2>&1); then libprelude-config --cflags && echo -DHAVE_LIBPRELUDE; fi)

LDFLAGS		= -shared -Wl,-soname,${LIBLINK} -ldl $(LIBPRELUDE_LIBS)
SRCS		= util.c intercept.c
OBJECTS		= util.o intercept.o
HEADERS		= log.h util.h


# DEBUGGING OPTIONS
#
# Use
# 	-DDEBUG_TURN_OFF_SYSLOG to temporarily turn off logging violations to
#	 	syslog.  ONLY USE THIS FOR DEBUGGING!
#	-DDUMP_STACK to see a printout of the stack contents when a violation
#		is detected (dumps to LIBSAFE_DUMP_STACK_FILE or stderr if that
#		file can't be created)
#	-DDUMP_CORE to create a core dump when terminating the program.
#	-DNOTIFY_WITH_EMAIL if you wish to be notified via email of security
#		violations that are caught with libsafe.
DEBUG_FLAGS	= -DDEBUG_TURN_OFF_SYSLOG \
		  -DDUMP_STACK \
		  -DLIBSAFE_DUMP_STACK_FILE=\"/tmp/libsafe_stack_dump\" \
		  -DDUMP_CORE \
		  -DNOTIFY_WITH_EMAIL
CCFLAGS		= -O2 -Wall -fPIC -DLIBSAFE_VERSION=\"$(VERSION)\" $(LIBPRELUDE_CFLAGS)
# Uncomment the following line to enable all debugging options.  Better way is
# to do "make debug".
#CCFLAGS		= -O2 -Wall -fPIC $(DEBUG_FLAGS)


all	::	$(LIBNAME)

%.o	:	%.c
		$(CC) -c -o $@ $(CCFLAGS) $<

${LIBNAME}:	dep $(OBJECTS)
		$(CC) -o ${LIBNAME} $(LDFLAGS) ${OBJECTS}
		ln -sf $(LIBNAME) libsafe.so

debug	:	CCFLAGS += $(DEBUG_FLAGS)
debug	:	all

dep	::	$(SRCS) $(HEADERS)
		$(DEPEND) $(CFLAGS) $(SRCS) > dep

clean	::
		rm -f core *.bak *% *~ *.o a.out dep
		rm -f libsafe.so*

purge	::	clean
		rm -f $(LIBNAME)

install	::	all
		$(INSTALL) $(LIBNAME) $(LIBDIR)
		/sbin/ldconfig

# If you have man pages in some other directory  add it here.

		@if [  -d $(MANDIR) ];  then \
		 echo "$(INSTALL) $(MANNAME) $(MANDIR)"; \
		 $(INSTALL) $(MANNAME) $(MANDIR); \
		elif [  -d /usr/share/man/man8 ];  then \
		  echo "$(INSTALL) $(MANNAME) /usr/share/man/man8"; \
		  $(INSTALL) $(MANNAME) /usr/share/man/man8; \
		else echo "***** Error: Cannot find man directories"; \
		fi

