home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / progmisc / djasy10d.zip / MAKEFILE < prev    next >
Text File  |  1992-09-07  |  522b  |  24 lines

  1. all: asynctsr.com atest.exe gtest atestpp.exe gtestpp
  2.  
  3. # if you have Turbo C++, use tcc instead
  4. CC=bcc -v -c-
  5. GCC=gcc -g -O2
  6.  
  7. asynctsr.com : asynctsr.asm
  8.     tasm asynctsr;
  9.     tlink /t asynctsr;
  10.  
  11. atest.exe : atest.c async.c
  12.     $(CC) atest.c async.c
  13.  
  14. gtest : atest.c async.c
  15.     $(GCC) -o gtest atest.c async.c -lpc
  16.  
  17. atestpp.exe : atestpp.cc async.c
  18.         copy atestpp.cc atestpp.cpp
  19.     $(CC) atestpp.cpp async.c
  20.         del atestpp.cpp
  21.  
  22. gtestpp : atestpp.cc async.c
  23.     $(GCC) -o gtestpp atestpp.cc async.c -lpc
  24.