MAKEFILE
资源名称:ertos.rar [点击查看]
上传用户:sunrenlu
上传日期:2022-06-13
资源大小:1419k
文件大小:1k
源码类别:
操作系统开发
开发平台:
DOS
- #
- # switches:
- # define the ones you want in the CFLAGS definition...
- #
- #
- DEBUGS= -v
- CFLAGS= $(DEBUGS) -ml -DMSDOS -I. -I..inc -g200
- # Assembler flags
- AFLAGS=-mx -t
- # Define PC-specific include file
- .c.obj:
- bcc -c $(CFLAGS) $*.c
- tlib ..librtos -+$*
- .asm.obj:
- tasm $(AFLAGS) $*;
- tlib ..librtos -+$*
- objs =rtos.obj net.obj bqueue.obj graph.obj gifsave.obj strlst.obj sio.obj
- kconio.obj cpujmp.obj filename.obj inifile.obj emath.obj parse.obj
- ..librtos.lib: $(objs)
- echo done
- rtos.obj : rtos.c ..incrtos.h
- net.obj : net.c ..incrtos.h ..incnet.h
- bqueue.obj : bqueue.c ..incrtos.h
- graph.obj : graph.c ..incrtos.h ..incgraph.h ..incnet.h
- gifsave.obj : gifsave.c ..incrtos.h ..incgraph.h ..incnet.h
- strlst.obj : strlst.c ..incrtos.h ..incstrlst.h
- sio.obj : sio.c ..incrtos.h ..incsio.h
- kconio.obj : kconio.c ..incrtos.h ..inckconio.h
- cpujmp.obj : cpujmp.c
- filename.obj: filename.c ..incrtos.h ..incfilename.h
- inifile.obj : inifile.c ..incrtos.h ..incinifile.h
- emath.obj : emath.c ..incemath.h
- parse.obj : parse.c ..incparse.h