⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rsxntdj.mak

📁 Libnet is a cross-platform library aimed at game developers. It has an abstract high level API, whic
💻 MAK
字号:
# Portability makefile -- helper for other makefiles# RSXNTDJ versionTARGET = RSXNTDJLIBDEST = $(DJDIR)/lib/win32/$(LIBFILENAME)INCDEST = $(DJDIR)/include/rsxntdj/$(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 = gcc -Zwin32WARNING_FLAGS = -Wall -Werror -Wno-unused -Wstrict-prototypesLDLIBS = -lwsockARFLAGS = rsLIBNAME = 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 + -