my guess is that CFLAGS are compiler flags and LFLAGS are library flags
(or paths) that it uses when it makes. true? false? if true, then it
seems like what i need to change is LFLAGS. looking at the makefile
(actually, not the makefile that comes w/the x client, but a more basic
one called mymakefile that's supplied for just such problems):
# if your X libraries are not in the standard places, add a -L to them.
#LFLAGS = -L/import/X11R4/usr/lib
so i should add:
LFLAGS = -L/usr/include/X11
right?
the other libraries it looks for are /usr/lib/X11 and /usr/local/lib,
which are correct on my system, so i shouldn't have to add them.