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

📄 makefile.in

📁 lwip在ucos上的移植
💻 IN
字号:
# Makefile for doschk.	-*- Indented-Text -*-# Copyright (C) 1993 Free Software Foundation, 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, 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.#### Start of system configuration section. ####srcdir = @srcdir@VPATH = @srcdir@CC = @CC@INSTALL = @INSTALL@INSTALL_PROGRAM = @INSTALL_PROGRAM@INSTALL_DATA = @INSTALL_DATA@DEFS = @DEFS@LIBS = @LIBS@CFLAGS = -gLDFLAGS = -gprefix = /usr/localexec_prefix = $(prefix)bindir = $(exec_prefix)/bindatadir = $(prefix)/sharelibdir = $(exec_prefix)/libinfodir = $(prefix)/info# Where to install the manual pages.mandir = $(prefix)/man/man1# Extension (not including `.') for the installed manual page filenames.manext = 1#### End of system configuration section. ####SHELL = /bin/shLOADLIBES = $(LIBS)DISTFILES = COPYING ChangeLog Makefile.in README doschk.cDISTNAME = doschk-1.1all: doschkinfo:.c.o:	$(CC) -c -I. -I$(srcdir) $(DEFS) $(CPPFLAGS) $(CFLAGS) $<### targets required by GNU Coding standards ###TAGS:	cd $(srcdir); etagsclean:	rm -f *.o core a.out doschkmostlyclean: cleandistclean: clean	rm -f Makefile config.statusrealclean: distclean	rm -f TAGSdist: $(DISTFILES)	rm -rf $(DISTNAME)	mkdir $(DISTNAME)	ln $(DISTFILES) $(DISTNAME)	tar --gzip -chf $(DISTNAME).tar.z $(DISTNAME)	rm -rf $(DISTNAME)install: all	$(INSTALL_PROGRAM) doschk $(bindir)/doschkinstall-info:uninstall: force	-cd $(bindir); rm -f doschk### Actual doschk-specific targets ###doschk: doschk.o#check: doschk#	ls -1 * | ./doschk#doschk.info: doschk.texi#	cd $(srcdir); makeinfo doschk.texi#doschk.dvi: doschk.texi#	cd $(srcdir); texi2dvi doschk.texi# Prevent GNU make v3 from overflowing arg limit on SysV..NOEXPORT:

⌨️ 快捷键说明

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