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

操作系统开发

开发平台:

DOS

  1. #
  2. #  GNU Makefile for ./projectsdirectory
  3. #
  4. .SUFFIXES: .exe
  5. LIBS = ../lib/librt32.a $(subst ,/,$(WATT_ROOT))/lib/libwatt.a
  6. CC     = gcc
  7. CFLAGS = -Wall -O2 -g -gcoff -I. -I../inc
  8. PROGS  = web4test.exe email.exe fingtest.exe telnetd.exe modem.exe 
  9.          cgitest.exe cookie.exe xmodem.exe findgate.exe netwatch.exe
  10. all: $(PROGS)
  11. @echo Protected-mode (djgpp2) program done.
  12. %.exe: %.c $(LIBS)
  13. $(CC) $(CFLAGS) $*.c $(LIBS) -o $*.exe
  14. $(PROGS): $(LIBS)
  15. clean:
  16. rm -f $(PROGS)