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

📄 makefile.in

📁 cygwin, 著名的在win32下模拟unix操作系统的东东
💻 IN
字号:
# Copyright (c) 2001, 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 Corinna Vinschen <vinschen@redhat.de>## Makefile for Cygwin subauthentication DLL.SHELL := @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@CC              := @CC@CC_FOR_TARGET   := $(CC)CFLAGS          := @CFLAGS@ -nostdincinclude $(srcdir)/../Makefile.commonWIN32_COMMON	:= -mno-cygwinWIN32_INCLUDES  := -I. -I$(srcdir) $(w32api_include)WIN32_CFLAGS    := $(CFLAGS) $(WIN32_COMMON) $(WIN32_INCLUDES)WIN32_LDFLAGS	:= $(CFLAGS) $(WIN32_COMMON) -L$(mingw_build) -nostdlib -Wl,-sharedSTARTFILE	:= $(mingw_build)/dllcrt2.oLIBS		:= -lmingw32 -lkernel32DLL	:=	cygsuba.dllDEF_FILE:=	cygsuba.defOBJ	=	cygsuba.o.SUFFIXES:.NOEXPORT:all: Makefile $(DLL)$(DEF_FILE): cygsuba.din config.status	$(SHELL) config.status$(DLL): $(OBJ) $(DEF_FILE)ifdef VERBOSE	$(CC) -s $(WIN32_LDFLAGS) -o $@ $(DEF_FILE) $(STARTFILE) $(OBJ) $(LIBS)else	@echo $(CC) .. -o $@ $(OBJ)	@$(CC) -s $(WIN32_LDFLAGS) -o $@ $(DEF_FILE) $(STARTFILE) $(OBJ) $(LIBS)endif.PHONY: all install clean realcleanrealclean: clean	rm -f  Makefile config.cacheclean:	rm -f *.o *.dllinstall: all	# $(SHELL) $(updir1)/mkinstalldirs $(bindir)	# for i in $(PROGS) ; do \	#   n=`echo $$i | sed '$(program_transform_name)'`; \	#   $(INSTALL_PROGRAM) $$i $(bindir)/$$n; \	# done || exit 0%.o: %.cifdef VERBOSE	$(CC) $(WIN32_CFLAGS) -c -o $@ $<else	@echo $(CC) -c $(CFLAGS) ... $(<F)	@$(CC) $(WIN32_CFLAGS) -c -o $@ $<endif

⌨️ 快捷键说明

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