Parent Directory
|
Revision Log
|
Revision Graph
changed/added make scripts for win32
| 1 | @echo off |
| 2 | |
| 3 | rem Set the DB2PATH variable to your DB2 base path, e.g., c:\sqllib |
| 4 | rem Set APRINC to your APR include directory |
| 5 | rem Set APRLIB to your APR library directory |
| 6 | |
| 7 | set DB2PATH=c:\Program Files\IBM\sqllib |
| 8 | set APRINC=c:\apr\include |
| 9 | set APRLIB=c:\apr\lib |
| 10 | |
| 11 | cl -Od /nologo /c /I %APRINC% /D WIN32 hash.c |
| 12 | link /libpath:%APRLIB% /subsystem:console /incremental:no /out:hash.dll /dll /def:hash.def hash.obj libapr-1.lib libaprutil-1.lib db2api.lib kernel32.lib user32.lib |
| 13 | |
| 14 | copy hash.dll "%DB2PATH%\function" |
| 15 | |
| 16 | @echo on |
| CVS admin | ViewVC Help |
| Powered by ViewVC 1.1.5 |