1# $Id: Makefile.in,v 1.1 2005/02/08 19:39:05 mederchik Exp $
2#
3# Copyright (C) 2001 Fyodor Yarochkin <fygrave@tigerteam.net>,
4#
5# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation; either version 2 of the License, or
8# (at your option) any later version.
9#
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13# GNU General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
16# along with this program; if not, write to the Free Software
17# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
19
20CC=@CC@
21INSTALL=@INSTALL@
22INSTALL_PROGRAM=@INSTALL_PROGRAM@
23INSTALL_DATA=@INSTALL_DATA@
24DESTDIR=
25prefix=@prefix@
26exec_prefix=@exec_prefix@
27bindir=@bindir@
28mandir=@mandir@
29PACKAGE=@PACKAGE@
30VERSION=@VERSION@
31CPPFLAGS=@CPPFLAGS@
32CFLAGS=@CFLAGS@ @CPPFLAGS@ -I../ -I../../ -I ../../../ -I../../../xplib -I ../../../../libs-external/USI++
33LDFLAGS=@LDFLAGS@ -L../../xplib
34SOLDFLAGS=@SOLDFLAGS@
35LIBS=@LIBS@ -lxplib
36DYNFLAGS=@DYNFLAGS@
37XPLIB=../../xplib/libxplib.a
38INCLUDES=
39RANLIB=@RANLIB@
40
41
42all: tcp_rst.o
43
44tcp_rst.o: tcp_rst.cc
45	${CXX} ${CFLAGS} -c tcp_rst.cc
46
47
48.c.o: $(INCLUDES)
49	$(CC) -c $(CFLAGS) $<
50
51
52.cc.o: $(INCLUDES)
53	$(CXX) -c $(CFLAGS) $<
54
55clean:
56	rm -f core *.o *.so
57distclean: clean
58	rm -f Makefile
59