graphics library problem -- solved

Bernhard Reus bernhard@cogs.susx.ac.uk
Fri, 04 Jan 2002 16:38:17 +0000


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