makefile.in
来自「UUDeview是一个编码解码器」· IN 代码 · 共 89 行
IN
89 行
## ============================================================================## This is the Makefile for the uu library, part of the uudeview package.# The values here were guessed by ./configure and are probably correct.## Usefull targets# all Compile the package# clean Deletes the binaries and objects and all the# other dirty stuff.## ============================================================================## $Id: Makefile.in,v 1.6 2002/03/11 09:15:46 fp Exp $## your make might need this#SHELL = /bin/sh## If you don't have the GNU C compiler installed, set CC=cc here#CC = @CC@## C Compiler Options#CFLAGS = @CFLAGS@ -I. @CPPFLAGS@ @DEFS@## the ranlib program#RANLIB = @RANLIB@################################################################################# You shouldn't have to change anything below.################################################################################# Programs to compile, Manpages to install and Versions#VERSION = @VERSION@PATCH = @PATCH@VDEF = -DVERSION=\"$(VERSION)\" -DPATCH=\"$(PATCH)\"#UULIB_SOURCE = uulib.c uucheck.c uunconc.c uuutil.c uuencode.c \ uuscan.c uustring.c fptools.c crc32.cUULIB_OBJ = ${UULIB_SOURCE:.c=.o}## make stuff#.SUFFIXES:.SUFFIXES: .c .oall: libuu.aclean: rm -f [Xx]deview gif2gfp rm -f *.o *.a *.so core *~ TAGSdistclean: clean rm -f config.status config.cache config.log Makefile config.h rm -f uudeview-*tar* uudeview-sfxrealclean: distcleannew: clean rm -f libuu.a $(MAKE) alllibuu.a: $(UULIB_OBJ) rm -f $@ ar r $@ $(UULIB_OBJ) -$(RANLIB) $@.c.o: $(CC) -c $(CFLAGS) $(VDEF) $<uuencode.o: uuencode.c uudeview.h uuint.h uustring.h fptools.h config.huulib.o: uulib.c uudeview.h uuint.h uustring.h fptools.h config.huunconc.o: uunconc.c uudeview.h uuint.h uustring.h fptools.h config.huucheck.o: uucheck.c uudeview.h uuint.h uustring.h fptools.h config.huuutil.o: uuutil.c uudeview.h uuint.h uustring.h fptools.h config.huuscan.o: uuutil.c uudeview.h uuint.h uustring.h fptools.h config.huustring.o: uustring.c uudeview.h uuint.h uustring.h config.hfptools.o: fptools.c fptools.h config.huustring.h: uustring.c awk -f uustring.awk < uustring.c > uustring.h
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?