1998-10-20 21:06:19 +00:00
|
|
|
#
|
2003-11-01 01:44:23 +00:00
|
|
|
# "$Id: Makefile,v 1.10.2.6.2.25 2003/11/01 01:44:23 easysw Exp $"
|
1998-10-20 21:06:19 +00:00
|
|
|
#
|
2001-11-19 21:25:35 +00:00
|
|
|
# FLUID makefile for the Fast Light Tool Kit (FLTK).
|
1998-10-20 21:06:19 +00:00
|
|
|
#
|
2003-08-02 21:17:30 +00:00
|
|
|
# Copyright 1998-2003 by Bill Spitzak and others.
|
1998-10-20 21:06:19 +00: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-05 21:21:24 +00:00
|
|
|
# Please report all bugs and problems to "fltk-bugs@fltk.org".
|
1998-10-20 21:06:19 +00:00
|
|
|
#
|
|
|
|
|
1998-10-06 18:21:25 +00:00
|
|
|
CPPFILES = \
|
1998-12-06 14:59:14 +00: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 \
|
2002-05-01 17:35:30 +00:00
|
|
|
align_widget.cxx \
|
1998-12-06 14:59:14 +00:00
|
|
|
about_panel.cxx \
|
|
|
|
widget_panel.cxx \
|
|
|
|
alignment_panel.cxx \
|
2002-03-25 20:09:12 +00:00
|
|
|
function_panel.cxx
|
1998-10-06 18:21:25 +00:00
|
|
|
|
|
|
|
################################################################
|
|
|
|
|
1998-12-06 14:59:14 +00:00
|
|
|
OBJECTS = $(CPPFILES:.cxx=.o)
|
1998-10-06 18:21:25 +00:00
|
|
|
|
2002-07-14 17:03:31 +00:00
|
|
|
CLEAN = core*
|
2001-12-19 19:23:32 +00:00
|
|
|
|
1998-10-06 18:21:25 +00:00
|
|
|
include ../makeinclude
|
|
|
|
|
2002-07-14 17:03:31 +00:00
|
|
|
all: $(FLUID) fluid$(EXEEXT)
|
|
|
|
|
|
|
|
fluid$(EXEEXT): $(OBJECTS) ../lib/$(LIBNAME) ../lib/$(FLLIBNAME) \
|
|
|
|
../lib/$(IMGLIBNAME)
|
|
|
|
echo Linking $@...
|
2003-11-01 01:44:23 +00:00
|
|
|
$(CXX) $(CXXFLAGS) -o $@ $(OBJECTS) $(LINKFLTKFORMS) $(LINKFLTKIMG) $(LDLIBS)
|
2002-07-14 17:03:31 +00:00
|
|
|
$(POSTBUILD) $@ ../FL/mac.r
|
|
|
|
|
|
|
|
fluid-shared$(EXEEXT): $(OBJECTS) ../src/$(DSONAME) ../src/$(FLDSONAME) \
|
|
|
|
../src/$(IMGDSONAME)
|
2000-04-25 22:17:00 +00:00
|
|
|
echo Linking $@...
|
2002-07-14 17:03:31 +00:00
|
|
|
$(CXX) $(CXXFLAGS) -o $@ $(OBJECTS) $(LINKSHARED) $(LDLIBS)
|
2001-12-14 19:34:30 +00:00
|
|
|
$(POSTBUILD) $@ ../FL/mac.r
|
1998-10-06 18:21:25 +00:00
|
|
|
|
|
|
|
clean :
|
2002-07-14 17:03:31 +00:00
|
|
|
-@ $(RM) *.o fluid$(EXEEXT) fluid-shared$(EXEEXT) $(CLEAN)
|
1998-10-06 18:21:25 +00:00
|
|
|
|
2001-12-19 19:23:32 +00:00
|
|
|
depend: $(CPPFILES)
|
2001-08-02 15:32:00 +00:00
|
|
|
makedepend -Y -I.. -f makedepend $(CPPFILES)
|
|
|
|
|
2002-03-28 13:20:11 +00:00
|
|
|
# Automatically generated dependencies...
|
1998-10-06 18:21:25 +00:00
|
|
|
include makedepend
|
|
|
|
|
2002-07-30 14:11:21 +00:00
|
|
|
install: all
|
2002-02-15 18:15:46 +00:00
|
|
|
echo "Installing FLUID in $(bindir)..."
|
2002-07-14 17:03:31 +00:00
|
|
|
-$(MKDIR) $(bindir)
|
2002-07-25 17:07:06 +00:00
|
|
|
$(CP) $(FLUID) $(bindir)/fluid$(EXEEXT)
|
|
|
|
$(STRIP) $(bindir)/fluid$(EXEEXT)
|
|
|
|
$(bindir)/fltk-config --post $(bindir)/fluid$(EXEEXT)
|
|
|
|
$(CHMOD) 755 $(bindir)/fluid$(EXEEXT)
|
1998-10-06 18:21:25 +00:00
|
|
|
|
|
|
|
uninstall:
|
2002-07-14 17:03:31 +00:00
|
|
|
$(RM) $(bindir)/fluid
|
1998-10-06 18:21:25 +00:00
|
|
|
|
1998-10-20 21:06:19 +00:00
|
|
|
#
|
1998-10-21 17:24:51 +00: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
|
|
|
|
|
|
|
|
#
|
2003-11-01 01:44:23 +00:00
|
|
|
# End of "$Id: Makefile,v 1.10.2.6.2.25 2003/11/01 01:44:23 easysw Exp $".
|
1998-10-20 21:06:19 +00:00
|
|
|
#
|