MAKEFILE
资源名称:ertos.rar [点击查看]
上传用户:sunrenlu
上传日期:2022-06-13
资源大小:1419k
文件大小:1k
源码类别:
操作系统开发
开发平台:
DOS
- #
- # Makefile for sample applications
- #
- DEBUG= E # set to D for disable, E for enable
- #
- #
- # auto configure section
- #
- #
- #if DEBUG=E
- IDEBUG=-v
- #endif
- CLIB=....libertostcp.lib ....librtos.lib
- CFLAGS= -ml $(IDEBUG) -I....inc;.
- CC= bcc $(CFLAGS)
- #
- #
- # list of executables
- #
- #
- .c.exe:
- $(CC) $*.c $(CLIB)
- all: therm.exe tscope.exe
- echo done $(TEXTMODEL) make with debugging $(TEXTDEBUG)
- ldriver.obj: ldriver.asm
- tasm -ml ldriver.asm
- therm.exe : therm.c ldriver.obj
- $(CC) therm.c ldriver.obj $(CLIB)
- tscope.exe : tscope.c webpart.c webpart.h ldriver.obj
- $(CC) tscope.c webpart.c ldriver.obj $(CLIB)
- tdstrip tscope.exe
- ....sharewarpklite tscope.exe