MAKEFILE
上传用户:sunrenlu
上传日期:2022-06-13
资源大小:1419k
文件大小:1k
源码类别:

操作系统开发

开发平台:

DOS

  1. #
  2. #       Makefile for sample applications
  3. #
  4. DEBUG= E        # set to D for disable, E for enable
  5. #
  6. #
  7. # auto configure section
  8. #
  9. #
  10. #if DEBUG=E
  11. IDEBUG=-v
  12. #endif
  13. CLIB=ertostcp.lib rtos.lib
  14. CFLAGS= -ml $(IDEBUG) -I..inc -L..lib
  15. CC= bcc $(CFLAGS)
  16. #
  17. #
  18. #  list of executables
  19. #
  20. #
  21. .c.exe:
  22.         $(CC) $*.c $(CLIB)
  23. all: test.exe test1.exe test2.exe test3.exe test4.exe test5.exe test6.exe 
  24.      test7.exe  test8.exe test9.exe test10.exe test11.exe test12.exe 
  25.      test13.exe test14.exe test15.exe test16.exe test17.exe test18.exe
  26.      term.exe term2.exe term3.exe 
  27.      mathtest.exe stktest.exe
  28.         echo done make with debugging $(TEXTDEBUG)