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