DJGPP.MAK
上传用户:sunrenlu
上传日期:2022-06-13
资源大小:1419k
文件大小:1k
源码类别:

操作系统开发

开发平台:

DOS

  1. #
  2. #  GNU Makefile for eRTOS examples
  3. #
  4. .SUFFIXES: .exe
  5. LIBS = $(subst ,/,$(WATT_ROOT))/lib/libwatt.a ../lib/librt32.a
  6. CC     = gcc
  7. CFLAGS = -Wall -O2 -g -gcoff -I../inc
  8. PROGS  = test.exe test3.exe test4.exe test5.exe test6.exe    
  9.          test7.exe test8.exe test9.exe test12.exe test13.exe 
  10.          test14.exe test15.exe test17.exe mathtest.exe       
  11.          term.exe term2.exe term3.exe
  12. all: $(PROGS)
  13. @echo Protected-mode (djgpp2) binaries done
  14. %.exe: %.c $(LIBS)
  15. $(CC) $(CFLAGS) $*.c $(LIBS) -o $*.exe
  16. $(PROGS): $(LIBS)
  17. clean:
  18. rm -f $(PROGS)