Qbasicnews.com

Full Version: Bug in makefile of gfxlib2 (CVS)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Here is a part of the makefile (Rev.: 1.9) for gfxlib2 out of the CVS:
Code:
...
osdepobjs := $(patsubst $(osdeppath)/%.c,obj/$(osdeppath)/%.o,$(wildcard $(osdeppath)/*.c))
osdepobjs := $(patsubst $(osdeppath)/%.s,obj/$(osdeppath)/%.o,$(wildcard $(osdeppath)/*.s))
...

should be:
Code:
...
osdepobjs := $(patsubst $(osdeppath)/%.c,obj/$(osdeppath)/%.o,$(wildcard $(osdeppath)/*.c))
osdepobjs += $(patsubst $(osdeppath)/%.s,obj/$(osdeppath)/%.o,$(wildcard $(osdeppath)/*.s))
...
:oops: That's my mistake; it was fixed last night - anonymous CVS might be out of sync with dev CVS, though.