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

📄 makefile.in

📁 cygwin, 著名的在win32下模拟unix操作系统的东东
💻 IN
字号:
# Copyright (c) 2000, Red Hat, Inc.##     This program is free software; you can redistribute it and/or modify#     it under the terms of the GNU General Public License as published by#     the Free Software Foundation; either version 2 of the License, or#     (at your option) any later version.##     A copy of the GNU General Public License can be found at#     http://www.gnu.org/## Written by Christopher Faylor <cgf@redhat.com>## Makefile for Cygwin installerSHELL :=@SHELL@srcdir:=@srcdir@VPATH:=@srcdir@prefix:=@prefix@exec_prefix:=@exec_prefix@bindir:=@bindir@etcdir:=$(exec_prefix)/etcprogram_transform_name :=@program_transform_name@INSTALL:=@INSTALL@INSTALL_PROGRAM:=@INSTALL_PROGRAM@INSTALL_DATA:=@INSTALL_DATA@EXEEXT:=@EXEEXT@EXEEXT_FOR_BUILD :=@EXEEXT_FOR_BUILD@CC:=@CC@CC_FOR_TARGET:=$(CC)CXX:=@CXX@CFLAGS:=@CFLAGS@ -nostdincCXXFLAGS:=@CXXFLAGS@ -fno-exceptions -fno-rttiCXX:=@CXX@WINDRES:=@WINDRES@OBJCOPY:=@OBJCOPY@AR:=@AR@RANLIB:=@RANLIB@include $(srcdir)/../Makefile.commonZLIB:=zlib/libzcygw.aBZ2LIB:=$(bupdir)/bz2lib/libbz2.alibmingw32.a:=$(mingw_build)/libmingw32.alibuser32:=$(w32api_lib)/libuser32.alibkernel32:=$(w32api_lib)/libkernel32.aALL_DEP_LDLIBS:=$(ZLIB) $(BZ2LIB) $(w32api_lib)/libole32.a $(w32api_lib)/libwsock32.a \		$(w32api_lib)/libnetapi32.a $(w32api_lib)/libadvapi32.a \		$(w32api_lib)/libuuid.a $(libkernel32) $(w32api_lib)/libuser32.a \		$(libmingw32)ALL_LDLIBS:=${patsubst $(mingw_build)/lib%.a,-l%,\	      ${patsubst $(w32api_lib)/lib%.a,-l%,\		${filter-out $(libmingw32),\		  ${filter-out $(libuser32),\		    ${filter-out $(libkernel32), $(ALL_DEP_LDLIBS)}}}}}ALL_LDFLAGS:=${filter-out -I%, \	       ${filter-out -W%, \		-B$(w32api_lib)/ -B${mingw_build}/ $(MINGW_CFLAGS) $(LDFLAGS)}}LIBS:=libbz2.aOBJS:=blocksort.o bzlib.o compress.o decompress.o huffman.o crctable.o randtable.o.SUFFIXES:.NOEXPORT:.PHONY: all install clean realcleanall: Makefile $(LIBS)$(LIBS): $(OBJS)	$(AR) cru $@ $?	$(RANLIB) $@clean:	rm -f *.o *.rc *.arealclean: clean	rm -f  Makefile config.cacheinstall: all: Nothing to install%.o: %.cifdef VERBOSE	$(CC) $c -o $(@D)/$(basename $@)$o -MD $(MINGW_CFLAGS) $<else	@echo $(CC) $c -o $(@D)/$(basename $@)$o $(MINGW_CFLAGS) ... $^;\	$(CC) $c -o $(@D)/$(basename $@)$o -MD $(MINGW_CFLAGS) $<endifD=$(wildcard *.d)ifneq ($D,)include $Dendif

⌨️ 快捷键说明

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