#
# Copyright (c) 1999
# Stefan Savage and the University of Washington.
# All rights reserved. 
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
#    notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
#    notice, this list of conditions and the following disclaimer in the
#    documentation and/or other materials provided with the distribution.
# 3. The name of the author(s) may not be used to endorse or promote
#    products derived from this software without specific prior
#    written permission.  
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
# IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#

#
# HISTORY
# 04-Nov-99  Stefan Savage (savage) at the University of Washington
#	Created.
#
SRC = inet.c capture.c gmt2local.c distribution.c setsignal.c sting.c 

HDR = inet.h capture.h gmt2local.h distribtion.h 

LIBPCAP = ./libpcap-0.4
CC = gcc 
OBJS = version.o $(SRC:.c=.o)
INCLS = -I. -I$(LIBPCAP)
DEFS = -DRETSIGTYPE=void -DHAVE_SIGACTION=1 
CFLAGS =  -Wall $(CCOPT) $(DEFS) $(INCLS)
LIBS = -lm $(LIBPCAP)/libpcap.a

all: sting

version.o: version.c
version.c: VERSION
	@rm -f $@
	sed -e 's/.*/char sting_version[] = "&";/' VERSION > $@

.s.o:
	@rm -f $@
	$(CC) $(CFLAGS) -c $*.c

.c.o:
	@rm -f $@
	$(CC) $(CFLAGS) -c $*.c

sting: $(OBJS) $(LIBS)
	@rm -f $@
	$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)

