4 Jan
2002
4 Jan
'02
4:38 p.m.
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