home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c222 / 1.ddi / SOURCE / CLIB / DX86_O / RECOMP.BAT < prev   
Encoding:
DOS Batch File  |  1991-01-16  |  2.2 KB  |  41 lines

  1. @echo Note: Becareful that any existing object modules have been compiled
  2. @echo       with for the same memory model as you are building.
  3. @pause
  4. @if %1x == x goto error
  5. if not exist fl_func.obj  hc -c -I.. -I..\..\..\inc -M%1  ..\fl_func.c
  6. if not exist fl_paths.obj hc -c -I.. -I..\..\..\inc -M%1  ..\fl_paths.c
  7. if not exist gr_fill.obj  hc -c -I.. -I..\..\..\inc -M%1  ..\gr_fill.c
  8. if not exist gr_shape.obj hc -c -I.. -I..\..\..\inc -M%1  ..\gr_shape.c
  9. if not exist gr_windo.obj hc -c -I.. -I..\..\..\inc -M%1  ..\gr_windo.c
  10. if not exist kb_field.obj hc -c -I.. -I..\..\..\inc -M%1  ..\kb_field.c
  11. if not exist me_alph.obj  hc -c -I.. -I..\..\..\inc -M%1  ..\me_alph.c
  12. if not exist sc_box.obj   hc -c -I.. -I..\..\..\inc -M%1  ..\sc_box.c
  13. if not exist sc_field.obj hc -c -I.. -I..\..\..\inc -M%1  ..\sc_field.c
  14. if not exist sc_windo.obj hc -c -I.. -I..\..\..\inc -M%1  ..\sc_windo.c
  15. if not exist st_alph.obj  hc -c -I.. -I..\..\..\inc -M%1  ..\st_alph.c
  16. if not exist st_conv.obj  hc -c -I.. -I..\..\..\inc -M%1  ..\st_conv.c
  17. if not exist st_just.obj  hc -c -I.. -I..\..\..\inc -M%1  ..\st_just.c
  18. if not exist st_sub.obj   hc -c -I.. -I..\..\..\inc -M%1  ..\st_sub.c
  19. if not exist tx_field.obj hc -c -I.. -I..\..\..\inc -M%1  ..\tx_field.c
  20. if not exist tx_menu.obj  hc -c -I.. -I..\..\..\inc -M%1  ..\tx_menu.c
  21. if not exist ut_crypt.obj hc -c -I.. -I..\..\..\inc -M%1  ..\ut_crypt.c
  22. if not exist ut_date.obj  hc -c -I.. -I..\..\..\inc -M%1  ..\ut_date.c
  23. if not exist ut_day.obj   hc -c -I.. -I..\..\..\inc -M%1  ..\ut_day.c
  24. if not exist ut_dmem.obj  hc -c -I.. -I..\..\..\inc -M%1  ..\ut_dmem.c
  25. if not exist ut_dtadd.obj hc -c -I.. -I..\..\..\inc -M%1  ..\ut_dtadd.c
  26. if not exist ut_dtstr.obj hc -c -I.. -I..\..\..\inc -M%1  ..\ut_dtstr.c
  27. if not exist ut_stack.obj hc -c -I.. -I..\..\..\inc -M%1  ..\ut_stack.c
  28. if not exist ut_xlate.obj hc -c -I.. -I..\..\..\inc -M%1  ..\ut_xlate.c
  29. lib @..\mkclib.lnk
  30. mv temp.lib ..\..\..\lib\clib%1.lib
  31. @goto end
  32. :error
  33. @echo Please enter which library model to make.
  34. @echo s = small memory model.
  35. @echo m = medium memory model.
  36. @echo l = large memory model.
  37. @echo b = big memory model.
  38. @echo c = compact memory model.
  39. @echo For example:  recomp s
  40. :end
  41.