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=....libertostcp.lib ....librtos.lib
  14. CFLAGS= -ml $(IDEBUG) -I....inc
  15. CC= bcc $(CFLAGS)
  16. #
  17. #
  18. #  list of executables
  19. #
  20. #
  21. .c.exe:
  22.         $(CC) $*.c $(CLIB)
  23. termserv.exe: termserv.c webpart.c
  24.         $(CC) termserv.c webpart.c $(CLIB)
  25. all: termserv.exe
  26.         echo done $(TEXTMODEL) make with debugging $(TEXTDEBUG)