📄 djgpp.mak
字号:
# Portability makefile -- helper for other makefiles# DJGPP versionTARGET = DJGPPLIBDEST = $(DJDIR)/lib/$(LIBFILENAME)INCDEST = $(DJDIR)/include/$(INCNAME)EXE_SUFFIX = .exeifneq ($(wildcard $(DJDIR)/bin/rm.exe),) RM_F = rm -felse # Argh! No fileutils! Now what? RM_F = @echo You don\'t have fileutils. Remove the following files by hand:endif# `update' is a djgpp-supplied file copierCP_F = update# DOSish analogue of the "%: %.o" rule%.exe: %.o $(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@CC = gccWARNING_FLAGS = -Wall -Werror -Wno-unused -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarationsARFLAGS = rsLINK_ALLEGRO = -lallegLIBNAME = netLIBFILENAME = lib$(LIBNAME).aINCNAME = libnet.hLIBDIR = $(BASE)/libLIBSRC = $(LIBDIR)/$(LIBFILENAME)INCDIR = $(BASE)/includeINCSRC = $(INCDIR)/$(INCNAME)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -