#
# "$Id: Makefile,v 1.18.2.8 1999/04/26 12:36:17 mike Exp $"
#
# Library makefile for the Fast Light Tool Kit (FLTK).
#
# Copyright 1998 by Bill Spitzak and others.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Library General Public
# License as published by the Free Software Foundation; either
# version 2 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
# Library General Public License for more details.
#
# You should have received a copy of the GNU Library 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.
#
CXX = c++
CFLAGS = -I../fltk-1.0.6 -O2
LDFLAGS = -L../fltk-1.0.6/lib -lfltk -L/usr/X11R6/lib -lX11 -lXext -lm  
CPPFILES = \
	MailReact.cxx \
	TextBuffer.cxx \
	TextDisp.cxx \
	TextEdit.cxx \
	main.cxx \
	sflcons.cxx \
	sflconv.cxx \
	sflcvsb.cxx \
	sfldate.cxx \
	sfldir.cxx \
	sflenv.cxx \
	sflfile.cxx \
	sflini.cxx \
	sfllang.cxx \
	sfllist.cxx \
	sflmail.cxx \
	sflmem.cxx \
	sflmime.cxx \
	sflnode.cxx \
	sflsock.cxx \
	sflstr.cxx \
	sflsymb.cxx \
	sflsyst.cxx \
	sfltok.cxx \
	sfltron.cxx \
	sfluid.cxx \
	startmail.cxx 


################################################################


OBJECTS = $(CPPFILES:.cxx=.o) 

PROGRAM = MailReactor

all:	$(PROGRAM) 

MailReactor: $(OBJECTS)
	$(CXX) -o MailReactor $(OBJECTS) $(LDFLAGS)  

.SUFFIXES:	.cxx .h .o

.cxx.o :
	$(CXX) $(CFLAGS) -c $<

clean :
	-@ rm -f *.o *.do $(PROGRAM) $(CLEAN) core *~ makedepend cmap log.txt \
	receivers.txt text.txt MailReactor.ini
	@touch makedepend

################################################################


#
# End of "$Id: Makefile,v 1.18.2.8 1999/04/26 12:36:17 mike Exp $".
#
