home *** CD-ROM | disk | FTP | other *** search
Makefile | 1992-10-31 | 492 b | 24 lines |
- all: asynctsr.com atest.exe gtest atestpp.exe gtestpp
-
- #CC=bcc -v -c-
- CC=tcc -v
- GCC=gcc -g -O2
-
- asynctsr.com : asynctsr.asm
- tasm asynctsr;
- tlink /t asynctsr;
-
- atest.exe : atest.c async.c
- $(CC) atest.c async.c
-
- gtest : atest.c async.c
- $(GCC) -o gtest atest.c async.c -lpc
-
- atestpp.exe : atestpp.cc async.c
- copy atestpp.cc atestpp.cpp
- $(CC) atestpp.cpp async.c
- del atestpp.cpp
-
- gtestpp : atestpp.cc async.c
- $(GCC) -o gtestpp atestpp.cc async.c -lpc
-