home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / gnu / djgpp / contrib / async / makefile < prev    next >
Encoding:
Makefile  |  1993-12-02  |  486 b   |  25 lines

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