home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / database / cdbms / dldbms.bat < prev    next >
Encoding:
DOS Batch File  |  1987-06-01  |  1.4 KB  |  33 lines

  1. rem 
  2. rem       dldbms.bat
  3. rem       Build cdata with Datalight C
  4. rem       Compiler is installed in \bin
  5. rem       Compiler .h files are in \include
  6. rem       Compiler libraries are in \lib
  7. rem       Link.exe is in \dos
  8. rem       Cdata source code is in current directory
  9. rem
  10. set path=\bin;\dos
  11. set INCLUDE=\include
  12. set TMP=c:\
  13. set LIB=\lib
  14. dlc -dCOMPILER=DATALIGHT -c btree.c
  15. dlc -dCOMPILER=DATALIGHT -c datafile.c
  16. dlc -dCOMPILER=DATALIGHT -c screen.c
  17. dlc -dCOMPILER=DATALIGHT -c database.c
  18. dlc -dCOMPILER=DATALIGHT -c ellist.c
  19. dlc -dCOMPILER=DATALIGHT -c sys.c
  20. dlc -dCOMPILER=DATALIGHT schema.c
  21. schema <cbs.sch >cbs.c1 -1
  22. schema <cbs.sch >cbs.c2 -2
  23. schema <cbs.sch >cbs.c3 -3
  24. dlc -dCOMPILER=DATALIGHT qd.c cbs.c ellist.obj database.obj screen.obj btree.obj datafile.obj sys.obj
  25. dlc -dCOMPILER=DATALIGHT ds.c dblist.c clist.c cbs.obj ellist.obj database.obj btree.obj datafile.obj sys.obj
  26. dlc -dCOMPILER=DATALIGHT index.c cbs.obj database.obj btree.obj datafile.obj sys.obj
  27. dlc -dCOMPILER=DATALIGHT dbsize.c cbs.obj database.obj datafile.obj btree.obj sys.obj 
  28. dlc -dCOMPILER=DATALIGHT dbinit.c cbs.obj database.obj btree.obj datafile.obj sys.obj 
  29. dlc -dCOMPILER=DATALIGHT posttime.c cbs.obj database.obj screen.obj btree.obj datafile.obj sys.obj 
  30. dlc -dCOMPILER=DATALIGHT payments.c cbs.obj database.obj screen.obj btree.obj datafile.obj sys.obj
  31. dlc -dCOMPILER=DATALIGHT invoice.c cbs.obj database.obj btree.obj datafile.obj sys.obj
  32.  
  33.