📄 makefile.in
字号:
# (c) Copyright 1992, 1993 by Panagiotis Tsirigotis# All rights reserved. The file named COPYRIGHT specifies the terms # and conditions for redistribution.## $Id: Makefile.in,v 1.1.1.1 2003/02/19 17:29:27 bbraun Exp $## Based on Library makefile template: *Revision: 1.15 *#NAME = sioVPATH = @srcdir@SRCDIR = @srcdir@HEADERS = sio.h impl.h sioconf.hSOURCES = sprint.c sio.c siosup.cOBJECTS = sprint.o sio.o siosup.oMANFILES = $(SRCDIR)/sio.3 $(SRCDIR)/Sprint.3INCLUDEFILES = $(SRCDIR)/sio.h# The following variables are used by the 'install' entry and# should be customized:# LIBDIR: where the library will be placed# INCUDEDIR: where the include files will be placed# MANDIR: where the man pages will be placedLIBDIR = ../../libMANDIR = ../../manINCLUDEDIR = ../../includeDEBUG = -g # -g or -OCPP_DEFS = ## The following variables shouldn't need to be changed#CPP_FLAGS = $(CPP_DEFS)CC_FLAGS = $(DEBUG)CFLAGS = @CFLAGS@ $(CPP_FLAGS) $(CC_FLAGS) -I$(INCLUDEDIR)INSTALL = @INSTALL@FMODE = -m 640 # used by installRANLIB = @RANLIB@LIBNAME = lib$(NAME).alib: $(LIBNAME)libopt: clean make DEBUG=-O lib $(INSTALL) $(FMODE) $(LIBNAME) $(LIBDIR)/optimized$(LIBNAME): $(OBJECTS) ar r $@ $? $(RANLIB) $@install: $(LIBNAME) @if test "$(LIBDIR)" -a "$(INCLUDEDIR)" -a "$(MANDIR)" ;\ then \ $(INSTALL) $(FMODE) $(LIBNAME) $(LIBDIR) ;\ $(RANLIB) $(LIBDIR)/$(LIBNAME) ;\ echo "Installed $(LIBNAME) to $(LIBDIR)" ;\ for i in $(INCLUDEFILES); do $(INSTALL) $(FMODE) $$i $(INCLUDEDIR) ; done ;\ echo Installed $(INCLUDEFILES) to $(INCLUDEDIR) ;\ for i in $(MANFILES) ; do $(INSTALL) $(FMODE) $$i $(MANDIR) ; done ;\ echo Installed $(MANFILES) to $(MANDIR) ;\ else \ echo "You forgot to set one of the following variables: LIBDIR,INCLUDEDIR,MANDIR" ;\ fiuninstall: a=`pwd` ; cd $(INCLUDEDIR) ;\ if test $$a != `pwd` ; then rm -f $(INCLUDEFILES) ; fi a=`pwd` ; cd $(LIBDIR) ;\ if test $$a != `pwd` ; then rm -f $(LIBNAME) ; fi a=`pwd` ; cd $(MANDIR) ;\ if test $$a != `pwd` ; then rm -f $(MANFILES) ; ficlean: rm -f $(OBJECTS) $(LIBNAME) core rm -f *.swp rm -f *.?~ spotless: clean uninstalldistclean: clean rm -f Makefile## PUT HERE THE RULES TO MAKE THE OBJECT FILES#sprint.o: sio.h impl.h sioconf.hsio.o: sio.h impl.h sioconf.h siosup.o: sio.h impl.h sioconf.h
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -