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

操作系统开发

开发平台:

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: smtp_c.exe syslog_c.exe ntime_c.exe http_c.exe snmp_trp.exe 
  24.      tftp_c.exe
  25.         echo done make with debugging $(TEXTDEBUG)