1998-10-21 01:06:19 +04:00
|
|
|
#
|
2002-03-26 00:39:01 +03:00
|
|
|
# "$Id: Makefile,v 1.10.2.6.2.16 2002/03/25 21:39:01 easysw Exp $"
|
1998-10-21 01:06:19 +04:00
|
|
|
#
|
2001-11-20 00:25:35 +03:00
|
|
|
# FLUID makefile for the Fast Light Tool Kit (FLTK).
|
1998-10-21 01:06:19 +04:00
|
|
|
#
|
2002-01-01 18:11:33 +03:00
|
|
|
# Copyright 1998-2002 by Bill Spitzak and others.
|
1998-10-21 01:06:19 +04:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
2000-06-06 01:21:24 +04:00
|
|
|
# Please report all bugs and problems to "fltk-bugs@fltk.org".
|
1998-10-21 01:06:19 +04:00
|
|
|
#
|
|
|
|
|
2001-11-18 15:48:38 +03:00
|
|
|
PROGRAM = fluid$(EXEEXT)
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
CPPFILES = \
|
1998-12-06 17:59:14 +03:00
|
|
|
Fl_Function_Type.cxx \
|
|
|
|
Fl_Menu_Type.cxx \
|
|
|
|
Fl_Group_Type.cxx \
|
|
|
|
Fl_Widget_Type.cxx \
|
|
|
|
Fl_Type.cxx \
|
|
|
|
Fl_Window_Type.cxx \
|
|
|
|
Fluid_Image.cxx \
|
|
|
|
code.cxx \
|
|
|
|
factory.cxx \
|
|
|
|
file.cxx \
|
|
|
|
fluid.cxx \
|
|
|
|
about_panel.cxx \
|
|
|
|
widget_panel.cxx \
|
|
|
|
alignment_panel.cxx \
|
2002-03-25 23:09:12 +03:00
|
|
|
function_panel.cxx
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
################################################################
|
|
|
|
|
1998-12-06 17:59:14 +03:00
|
|
|
OBJECTS = $(CPPFILES:.cxx=.o)
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2001-12-19 22:23:32 +03:00
|
|
|
CLEAN = core
|
|
|
|
|
1998-10-06 22:21:25 +04:00
|
|
|
include ../makeinclude
|
|
|
|
|
1999-03-25 18:26:44 +03:00
|
|
|
$(PROGRAM) : $(OBJECTS) ../lib/$(LIBNAME)
|
2000-04-26 02:17:00 +04:00
|
|
|
echo Linking $@...
|
2002-03-26 00:39:01 +03:00
|
|
|
$(CXX) $(CXXFLAGS) -o $(PROGRAM) $(OBJECTS) $(LINKFLTKFORMS) \
|
2002-01-15 04:33:16 +03:00
|
|
|
$(IMAGELIBS) $(LDLIBS)
|
2001-12-14 22:34:30 +03:00
|
|
|
$(POSTBUILD) $@ ../FL/mac.r
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
clean :
|
2001-12-19 22:23:32 +03:00
|
|
|
-@ rm -f *.o $(PROGRAM) $(CLEAN)
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2001-12-19 22:23:32 +03:00
|
|
|
depend: $(CPPFILES)
|
2001-08-02 19:32:00 +04:00
|
|
|
makedepend -Y -I.. -f makedepend $(CPPFILES)
|
|
|
|
|
1998-10-06 22:21:25 +04:00
|
|
|
include makedepend
|
|
|
|
|
|
|
|
install: $(PROGRAM)
|
2002-02-15 21:15:46 +03:00
|
|
|
echo "Installing FLUID in $(bindir)..."
|
2000-04-26 02:17:00 +04:00
|
|
|
-mkdir -p $(bindir)
|
2002-01-06 16:40:32 +03:00
|
|
|
cp $(PROGRAM) $(bindir)
|
2002-01-15 04:34:44 +03:00
|
|
|
strip $(bindir)/$(PROGRAM)
|
2000-04-26 02:17:00 +04:00
|
|
|
chmod 755 $(bindir)/$(PROGRAM)
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
uninstall:
|
2001-11-20 00:25:35 +03:00
|
|
|
rm -f $(bindir)/$(PROGRAM)
|
1998-10-06 22:21:25 +04:00
|
|
|
|
1998-10-21 01:06:19 +04:00
|
|
|
#
|
1998-10-21 21:24:51 +04:00
|
|
|
# Note: The rebuild target can only be used if you have the original .fl
|
|
|
|
# files. This is normally only used by the FLTK maintainers...
|
|
|
|
#
|
|
|
|
|
|
|
|
rebuild:
|
|
|
|
./fluid -c about_panel.fl
|
|
|
|
./fluid -c alignment_panel.fl
|
|
|
|
./fluid -c function_panel.fl
|
|
|
|
./fluid -c widget_panel.fl
|
|
|
|
|
|
|
|
#
|
2002-03-26 00:39:01 +03:00
|
|
|
# End of "$Id: Makefile,v 1.10.2.6.2.16 2002/03/25 21:39:01 easysw Exp $".
|
1998-10-21 01:06:19 +04:00
|
|
|
#
|