home *** CD-ROM | disk | FTP | other *** search
- echo off
- if exist gconfig.h erase gconfig.h
- if exist gconfig.ps erase gconfig.ps
- echo %% >gconfig.ps
- if exist _temp_ erase _temp_
- echo + >_temp_
- :top
- if '%1'=='' goto done
- if '%1'=='+' goto feat
- echo d(gs_%1_device) >>gconfig.h
- type %1.dev >>_temp_
- shift
- goto top
- :feat
- shift
- if '%1'=='' goto done
- echo f(gs_init_%1) >>gconfig.h
- echo (gs_%1.ps) >>gconfig.ps
- goto feat
- :done
- sort <_temp_ | uniq >gconfig.tr
- erase _temp_
-