makefile.in

来自「lwip在ucos上的移植」· IN 代码 · 共 102 行

IN
102
字号
## Makefile#   Copyright (C) 1990, 1991, 1992, 1993 Free Software Foundation## This file 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.# # This program is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the# GNU General Public License for more details.# # You should have received a copy of the GNU General Public License# along with this program; if not, write to the Free Software# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */### Makefile for devo/util/msdos/bin#srcdir = .prefix = /usr/localexec_prefix = $(prefix)bindir = $(exec_prefix)/binlibdir = $(exec_prefix)/libtooldir = $(exec_prefix)SHELL = /bin/shINSTALL = `cd $(srcdir); pwd`/../../../install-sh -cINSTALL_PROGRAM = $(INSTALL)INSTALL_DATA = $(INSTALL)AR_FLAGS = qvMAKEINFO = makeinfoEXES=make.exe info.exe makeinfo.exe \     killtip.uue mondfe.uue montip.uue pcserver.uue uditest.uue uditrace.uueUUDECODE=uudecode.NOEXPORT:MAKEOVERRIDES=#### Host, target, and site specific Makefile fragments come in here.#### These are roughly topologically sorted in order to make porting more# streamlined.FLAGS_TO_PASS = \	"CC=$(CC)" \	"CFLAGS=$(CFLAGS)" \	"AR=$(AR)" \	"RANLIB=$(RANLIB)" \	"AR_FLAGS=$(AR_FLAGS)" \	"AS=$(AS)" \	"CROSS_CFLAGS=$(CROSS_CFLAGS)" \	"TARGET_CFLAGS=$(TARGET_CFLAGS)" \	"INCLUDES=$(INCLUDES)"all: ${EXES}install:	@for file in ${EXES}; do \	   ${INSTALL_PROGRAM} $$file ${bindir}/$$file; \	doneclean mostlyclean:	-rm -f *.exedistclean maintainer-clean realclean: clean	-rm -f *~ core	-rm -f Makefile config.status .PHONY: info install-info clean-infoinfo:install-info:clean-info:force:make.exe: ${srcdir}/make.uue	${UUDECODE} ${srcdir}/make.uuemakeinfo.exe: ${srcdir}/makeinfo.uue	${UUDECODE} ${srcdir}/makeinfo.uueinfo.exe: ${srcdir}/info.uue	${UUDECODE} ${srcdir}/info.uueMakefile: Makefile.in configure.in $(host_makefile_frag) $(target_makefile_frag)	$(SHELL) config.status

⌨️ 快捷键说明

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