Excellent
BisonSAS!! Those are great updates ^^, keep up the good job man!
btw, you may want to try using my latest version of the
FBA Driverlist Gen v0.3 RC1 , let me know if you find any issues
so far I think it should be working fine.
here is the what's new:
v0.3 (21-03-2010)
----|
+ fixed a couple of string handling problems.
+ implemented a 4-step driverlist.h check, so it gets generated when needed only.
+ directories are now obtained from makefiles as arguments.
+ commented / disabled the directory auto-scanning.
+ cleaned a few other things.
You have to update this in the
makefile(s) for this version specifically ...
FIND#
# Compile & Initialize FBA Driverlist Generator
#
$(driverlist.h): $(srcdir)scripts/driverlist_gen.cpp
@$(CXX) -mconsole $(CXXFLAGS) $(LDFLAGS) $< -o driverlist_gen.exe
@driverlist_gen.exe $(drvobj)
@rm driverlist_gen.exe
REPLACE WITH#
# Compile & Initialize FBA Driverlist Generator
#
dirend = alldir_end
$(driverlist.h): $(srcdir)scripts/driverlist_gen.cpp
@$(CXX) -mconsole $(CXXFLAGS) $(LDFLAGS) $< -o driverlist_gen.exe
@driverlist_gen.exe $(alldir) $(dirend) $(drvobj)
@rm driverlist_gen.exe
Take care!
SeeYaa!