📄 makefile.in
字号:
### ============================================================================## Makefile for the Tcl/Tk stuff of UUDeview## ============================================================================## $Id: Makefile.in,v 1.4 2001/06/04 16:26:57 fp Exp $## your make might need this#SHELL = /bin/sh# # Source and Installation Paths#prefix = @prefix@exec_prefix = @exec_prefix@srcdir = @srcdir@VPATH = @srcdir@## Where you want the binaries and the manual pages installed#BINDIR = @bindir@MANDIR = @mandir@## install program. use our own, as AC_PROG_INSTALL doesn't work reliably#INSTALL = @srcdir@/install-shINSTALL_PROGRAM = ${INSTALL} -cINSTALL_DATA = ${INSTALL} -c -m 644## If you don't have the GNU C compiler installed, set CC=cc here#CC = @CC@## C Compiler Options#CFLAGS = @CFLAGS@ -I@srcdir@ @CPPFLAGS@ @TCL_CPPFLAGS@ @DEFS@## Libraries to link and their paths#LIBS = @LDFLAGS@ @TCL_LDFLAGS@ @TCL_LIBS@## the ranlib program#RANLIB = @RANLIB@## shared library stuff, if available. not yet active. i first need to# find someone who can really explain this to me.#SHLIB_CFLAGS = @SHLIB_CFLAGS@SHLIB_LD = @SHLIB_LD@SHLIB_SUFFIX = @SHLIB_SUFFIX@SHLIB_VERSION = @SHLIB_VERSION@################################################################################# You shouldn't have to change anything below.################################################################################@SET_MAKE@#SOURCE = uuwish.c uutcl.cOBJ = ${SOURCE:.c=.o}## make stuff#.SUFFIXES:.SUFFIXES: .c .oall: uuwish xdeviewclean: rm -f uuwish 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: distcleaninstall: all for d in $(PROGS) ; do \ $(INSTALL_PROGRAM) $(srcdir)/$$d $(BINDIR)/$$d ; \ done -for d in $(MPAGES) ; do \ $(INSTALL_DATA) $(srcdir)/$$d $(MANDIR)/man1/$$d ; \ donenew: clean rm -f uuwish make alluuwish: $(OBJ) ../uulib/libuu.a $(CC) -o $@ $(OBJ) -L../uulib -luu $(LIBS)xdeview: chmod 755 $@.c.o: $(CC) -c $(CFLAGS) -I../uulib $(VDEF) $<uuwish.o: uuwish.c config.huutcl.o: uutcl.c config.h
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -