X11: Add support for horizontal mouse scroll axis input.
[ntk.git] / fluid / makefile.wat
blob0d2214fb48c34d35fdf0fa13bd33acd6d21f9329
1 #\r
2 # "$Id: makefile.wat 7913 2010-11-29 18:18:27Z greg.ercolano $"\r
3 #\r
4 # FLUID makefile for the Fast Light Tool Kit (FLTK).\r
5 #\r
6 # Copyright 1998-2010 by Bill Spitzak and others.\r
7 #\r
8 # This library is free software; you can redistribute it and/or\r
9 # modify it under the terms of the GNU Library General Public\r
10 # License as published by the Free Software Foundation; either\r
11 # version 2 of the License, or (at your option) any later version.\r
12 #\r
13 # This library is distributed in the hope that it will be useful,\r
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of\r
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\r
16 # Library General Public License for more details.\r
17 #\r
18 # You should have received a copy of the GNU Library General Public\r
19 # License along with this library; if not, write to the Free Software\r
20 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307\r
21 # USA.\r
22 #\r
23 # Please report all bugs and problems on the following page:\r
24 #\r
25 #     http://www.fltk.org/str.php\r
26 #\r
28 OBJECTS = &\r
29     CodeEditor.obj &\r
30     Fl_Function_Type.obj &\r
31     Fl_Group_Type.obj &\r
32     Fl_Menu_Type.obj &\r
33     Fl_Type.obj &\r
34     Fl_Widget_Type.obj &\r
35     Fl_Window_Type.obj &\r
36     Fluid_Image.obj &\r
37     about_panel.obj &\r
38     align_widget.obj &\r
39     alignment_panel.obj &\r
40     code.obj &\r
41     factory.obj &\r
42     file.obj &\r
43     function_panel.obj &\r
44     template_panel.obj &\r
45     undo.obj &\r
46     widget_panel.obj\r
48 #   fluid.obj should not be in the list, because the watcom.mif file\r
49 #   assumes an object file with the same name as the target executable\r
51 ################################################################\r
53 !include ../watcom.mif\r
55 all:  $(ODIR)/fluid$(EXEEXT)\r
57 $(ODIR)\fluid$(EXEEXT): $(OBJECTS) $(LIBS)\r
59 #\r
60 # Clean all directories\r
61 #\r
62 clean : .SYMBOLIC\r
63     @echo Cleaning up.\r
64 CLEANEXTS = exe map sym obj lk1\r
65     @for %a in ($(CLEANEXTS)) do -rm -f $(ODIR)\*.%a\r
66     -rm -f *.err\r
68 #\r
69 # Note: The rebuild target can only be used if you have the original .fl\r
70 #       files.  This is normally only used by the FLTK maintainers...\r
71 #\r
73 rebuild:\r
74     ./fluid -c about_panel.fl\r
75     ./fluid -c alignment_panel.fl\r
76     ./fluid -c function_panel.fl\r
77     ./fluid -c widget_panel.fl\r
79 #\r
80 # End of "$Id: makefile.wat 7913 2010-11-29 18:18:27Z greg.ercolano $".\r
81 #\r