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 [EMAIL PROTECTED] http://www.haskell.org/mailman/listinfo/hugs-bugs
