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

📄 makefile.w32

📁 this gcc-g++-3.3.1.tar.gz is a source file of gcc, you can learn more about gcc through this codes f
💻 W32
字号:
# Makefile for zlib.  Modified for mingw32# For conditions of distribution and use, see copyright notice in zlib.h # To compile, # #   make -fmakefile.w32# CC=gcc# Generate dependencies (see end of the file)CPPFLAGS=-MMD #CFLAGS=-MMD -O#CFLAGS=-O -DMAX_WBITS=14 -DMAX_MEM_LEVEL=7#CFLAGS=-MMD -g -DDEBUGCFLAGS=-O3 $(BUTT) -Wall -Wwrite-strings -Wpointer-arith -Wconversion \             -Wstrict-prototypes -Wmissing-prototypes# If cp.exe is not found, replace with copy /Y .CP=cp -f# The default value of RM is "rm -f."  # If "rm.exe" is not found, uncomment:# RM=delLD=gccLDLIBS=-L. -lzLDFLAGS=-sINCL=zlib.h zconf.hLIBS=libz.aAR=ar rcsOBJS = adler32.o compress.o crc32.o gzio.o uncompr.o deflate.o trees.o \       zutil.o inflate.o infblock.o inftrees.o infcodes.o infutil.o \       inffast.oTEST_OBJS = minigzip.o untgz.oall: minigzip.exe untgz.exerebuild:	clean	alllibz.a: $(OBJS)	$(AR) $@ $(OBJS)%.exe : %.o $(LIBS)	$(LD) $(LDFLAGS) -o $@ $< $(LDLIBS).PHONY : cleanclean:	$(RM) *.d *.o *.exe libz.a foo.gzDEPS := $(wildcard *.d)ifneq ($(DEPS),)include $(DEPS)endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -