home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 10 / 10.iso / l / l352 / 1.img / EXAMPLES / MAKEFILE < prev    next >
Encoding:
Text File  |  1992-06-04  |  472 b   |  24 lines

  1.  
  2. all: big.exe dosmem.exe memtest.exe memtest2.exe vidtest.exe keys.exe hello.exe
  3.  
  4. big.exe: BIG.C
  5.     bcc286 -f- -G -O big.c
  6.  
  7. dosmem.exe: DOSMEM.C
  8.     bcc286 -f- dosmem.c
  9.  
  10. memtest.exe: MEMTEST.C
  11.     bcc286 -f- -G -O memtest.c
  12.  
  13. memtest2.exe: MEMTEST2.CPP
  14.     bcc286 -f- -G -O memtest2.cpp
  15.  
  16. vidtest.exe: VIDTEST.C FULLSCRN.C FULLSCRN.H
  17.     bcc286 -f- -I..\inc vidtest.c fullscrn.c
  18.  
  19. keys.exe: KEYS.C
  20.     bcc286 -f- -I..\inc keys.c
  21.  
  22. hello.exe: HELLO.C
  23.     bcc286 -f- hello.c
  24.