📄 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 2.4 2000/02/03 12:45:55 sxw Exp $### Available entries:# lib --> creates the library# install --> installs the library (archive, man page(s), header(s))# uninstall --> uninstall the library# clean --> removes all .o and .a files# spotless --> clean + uninstall# lint --> lints a file (usage: make lint MODULE=foo.c)# tags --> creates a tags file (from the SOURCES and HEADERS)# checkout --> checkout all files# dist --> distribution support#srcdir = @srcdir@VPATH = $(srcdir)NAME = strVERSION = 1.3.3HEADERS = str.h strparse.h \ ss_impl.h ss_rk.h ss_kmp.h ss_sbm.h ss_bmh.hSOURCES = strutil.c strprint.c strparse.c strs.c \ ss_rk.c ss_kmp.c ss_bf.c ss_sbm.c ss_bmh.cOBJECTS = strutil.o strprint.o strparse.o strs.o \ ss_rk.o ss_kmp.o ss_bf.o ss_sbm.o ss_bmh.oMANFILES = strparse.3 strprint.3 strutil.3 strs.3INCLUDEFILES = str.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 placed#LIBDIR = ../../libMANDIR = ../../manINCLUDEDIR = $(srcdir)/../sio## Available flags# NBIC : number of bits in a character variable (defaults to 8)# WIDE_INT : widest integer supported by the CPU/compiler# (defaults to 'long')# WIDE_INT_SIZE : size of the WIDE_INT type in bits (defaults to 32);# effective (and required) only when WIDE_INT is defined# NO_SIO : if the SIO library is not available (results in turning# all the string printing functions to no-ops)#DEFS = -D__STRICT_ANSI__ -DPROTOTYPES # for example, -DNO_SIOVERSION_DEF = -DVERSION=\"STR_Version_$(VERSION)\"CPP_DEFS = $(VERSION_DEF) $(DEFS)## The following variables shouldn't need to be changed#DEBUG = $(DEBUG_TOP)CPP_FLAGS = $(CPP_DEFS) -I$(INCLUDEDIR)CC_FLAGS = $(DEBUG)CFLAGS = $(CPP_FLAGS) $(CC_FLAGS)INSTALL = installbsd -cFMODE = -m 640 # used by installRANLIB = ranlibPAGER = lessprefix = @prefix@INSTALL_BINDIR = $(prefix)/binINSTALL_LIBDIR = $(prefix)/libINSTALL_MANDIR = $(prefix)/manCC = @CC@INSTALL = @INSTALL@INSTALL_BIN = @INSTALL_PROGRAM@INSTALL_FILE = @INSTALL_DATA@RANLIB = @RANLIB@LIBNAME = lib$(NAME).aall: libinstall:lib: $(LIBNAME)$(LIBNAME): $(OBJECTS) ar r $@ $? $(RANLIB) $@clean: -rm -f $(OBJECTS) $(LIBNAME) coredistclean: clean -rm -f Makefile
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -