summaryrefslogtreecommitdiff
path: root/fluid
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2004-11-21 14:32:22 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2004-11-21 14:32:22 +0000
commit4dd8dd654fbe58ba4d155baee5421ad89ce8869a (patch)
tree6c168ac9fb89899ef67d6f5046c2612b6aa34793 /fluid
parentbc1a32f00053655b246f7e5e92fc3ba45d6bd072 (diff)
Fl_Sys_Menu_Bar didn't compile on case-sensitive file-systems
(STR #622) More Watcom changes (STR #623) git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@3908 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'fluid')
-rw-r--r--fluid/makefile.wat13
1 files changed, 7 insertions, 6 deletions
diff --git a/fluid/makefile.wat b/fluid/makefile.wat
index 01a5abbcc..f6aea8963 100644
--- a/fluid/makefile.wat
+++ b/fluid/makefile.wat
@@ -1,5 +1,5 @@
#
-# "$Id: makefile.wat,v 1.1.2.1 2004/11/20 03:19:58 easysw Exp $"
+# "$Id: makefile.wat,v 1.1.2.2 2004/11/21 14:32:21 easysw Exp $"
#
# FLUID makefile for the Fast Light Tool Kit (FLTK).
#
@@ -23,7 +23,7 @@
# Please report all bugs and problems to "fltk-bugs@fltk.org".
#
-CPPFILES = &
+OBJECTS = &
Fl_Function_Type.obj &
Fl_Menu_Type.obj &
Fl_Group_Type.obj &
@@ -34,17 +34,18 @@ CPPFILES = &
code.obj &
factory.obj &
file.obj &
- fluid.obj &
align_widget.obj &
about_panel.obj &
widget_panel.obj &
alignment_panel.obj &
function_panel.obj
+# fluid.obj should not be in the list, because the watcom.mif file
+# assumes an object file with the same name as the target executable
+
################################################################
-OBJECTS = $(CPPFILES)
-EXTRA_LIBS = uuid.lib
+EXTRA_LIBS = wsock32
!include ../watcom.mif
@@ -73,5 +74,5 @@ rebuild:
./fluid -c widget_panel.fl
#
-# End of "$Id: makefile.wat,v 1.1.2.1 2004/11/20 03:19:58 easysw Exp $".
+# End of "$Id: makefile.wat,v 1.1.2.2 2004/11/21 14:32:21 easysw Exp $".
#