Hi, the problem with the makefile are the wildcards. Substituting them by the actual file list does the job. That's what we did (diff style): < gc_sources = X.gc Xlib.gc Xlib_StdDIS.gc < c_sources = cbits/auxiliaries.c ---
gc_sources = $(wildcard *.gc) c_sources = $(wildcard cbits/*.c)
An easy thing you may say but confusing for non makefile-experts. I overlooked that. This afternoon a colleague of mine made the right guess. Maybe you should not refer to wildcards in the distribution. Best, Bernhard
Hi, good to hear that you did find a workaround - a GNU make versioning issue, I suspect. I've incorporated your change; thanks. --sigbjorn ----- Original Message ----- From: "Bernhard Reus" <bernhard@cogs.susx.ac.uk> To: <hugs-bugs@haskell.org> Cc: <reid@cs.utah.edu>; "Sigbjorn Finne" <sof@galois.com> Sent: Friday, January 04, 2002 08:38 Subject: graphics library problem -- solved
Hi,
the problem with the makefile are the wildcards. Substituting them by the actual file list does the job. That's what we did (diff style):
< gc_sources = X.gc Xlib.gc Xlib_StdDIS.gc < c_sources = cbits/auxiliaries.c ---
gc_sources = $(wildcard *.gc) c_sources = $(wildcard cbits/*.c)
An easy thing you may say but confusing for non makefile-experts. I overlooked that. This afternoon a colleague of mine made the right guess.
Maybe you should not refer to wildcards in the distribution.
Best, Bernhard
_______________________________________________ Hugs-Bugs mailing list Hugs-Bugs@haskell.org http://www.haskell.org/mailman/listinfo/hugs-bugs
participants (2)
-
Bernhard Reus -
Sigbjorn Finne