Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Bug in makefile of gfxlib2 (CVS)
#1
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))
...
Reply
#2
:oops: That's my mistake; it was fixed last night - anonymous CVS might be out of sync with dev CVS, though.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)