2010-07-11 15:40:30 -04:00
|
|
|
@echo off
|
2010-08-23 16:45:26 -04:00
|
|
|
echo /* generated by gen_config_h.bat */ >tmp.h
|
|
|
|
for /f %%a in (%1cfg.h) do (if "%%a" NEQ "" (echo #define HAVE_NATIVE_%%a 1 >>tmp.h))
|
2010-07-11 15:40:30 -04:00
|
|
|
|
2010-08-23 16:45:26 -04:00
|
|
|
type cfg.h >>tmp.h
|
|
|
|
call out_copy_rename tmp.h ..\ config.h
|
|
|
|
del tmp.h
|