home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c100 / 4.ddi / COM.ZIP / MAKEFILE < prev    next >
Encoding:
Text File  |  1990-08-02  |  795 b   |  34 lines

  1. # Swap make out so we have more room to compile
  2. .SWAP
  3.  
  4. # Zortech compile
  5. #.cpp.obj :
  6. # ZTC $* -ml -a -b -c -DMetaVer3=1 -DMSDOS -DZORTECH -I\MENUET -I\META -g
  7.  
  8. # Turbo C compile
  9. .cpp.obj :
  10.  TCC -j10 -ml -c -DBORLAND -DMSDOS -I\BMETA -I\MENUET\MN20 -v $*.cpp
  11.  
  12. # Current project
  13.  
  14. com : com.exe
  15.  
  16. #
  17. # COMmunications compiler
  18. #
  19.  
  20. com.exe : com.obj comgram.obj comlex.obj alloca.obj allocate.obj
  21.   tlink /c /v /x \TC\LIB\C0L+com+comgram+comlex+alloca+allocate,com,,\TC\LIB\CL.LIB
  22.  
  23. #   blink /CO com+comgram+comlex+alloca+allocate,com,NUL.MAP;
  24.  
  25. comgram.cpp : com.y
  26.     bison -d -l -ocomgram.c com.y
  27.     if exist comgram.cpp erase comgram.cpp
  28.     rename comgram.c comgram.cpp
  29.  
  30. comlex.cpp : com.l
  31.     flex -iI com.l
  32.     if exist comlex.cpp erase comlex.cpp
  33.     rename lexyy.c comlex.cpp
  34.