📄 makefile_defs.cygwin
字号:
## Makefile_defs.cygwin## Definitions which work for a Win32/cygwin system.# Ported by Matthias Foehl <matthias.foehl@gmx.de>## Always run make ARCH=platform from the top-level savi directory.## You may need to alter the name of the tclsh# executable set in ~savi/tcl/Makefile# if running an older version of Cygwin.## $Id: Makefile_defs.cygwin,v 1.5 2004/05/04 16:42:14 lloydwood Exp $######################################################### ## Set machine type -- suffix for savi ## #########################################################MACH = cygwin######################################################### ## set CC to an ANSI C compiler ## #########################################################CC = gcc######################################################### ## set TCL_INCLUDES so that the compiler can ## find the tcl.h and tk.h ## ## if tcl/tk is installed in a standard place ## it is not necessary to set this ## #########################################################TCL_INCLUDES =######################################################### ## set TCL_LIBS so that the compiler can find ## libtcl.a and libtk.a ## #########################################################TCL_LIBS = -ltk84 -ltcl84######################################################### ## set X11_INCLUDES so that the compiler can ## find the X11 include files ## ## if the X11 include directory is already part of the ## compiler's search path it is not necessary to set. ## #########################################################X11_INCLUDES = -I/usr/X11R6/include######################################################### ## Set X11_LIBS so that libX11.a and other necessary ## files can be found. ## #########################################################X11_LIBS = -L/usr/X11R6/lib -lX11######################################################### ## Set OTHER_LIBS so that any other stuff needing to ## be linked in will be! ## #########################################################OTHER_LIBS = #-ldl# OTHER_LIBS = -static
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -