home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / msdos / djgpp / contrib / async / makefile < prev    next >
Encoding:
Makefile  |  1992-10-31  |  492 b   |  24 lines

  1. all: asynctsr.com atest.exe gtest atestpp.exe gtestpp
  2.  
  3. #CC=bcc -v -c-
  4. CC=tcc -v
  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.