?? makefile_defs.linux
字號:
## Makefile_defs.linux## Definitions which work for a Red Hat linux system.## Always run make ARCH=platform from the top-level savi directory.## $Id: Makefile_defs.linux,v 1.2 2004/05/04 16:42:14 lloydwood Exp $######################################################### ## Set machine type -- suffix for savi ## #########################################################MACH = linux######################################################### ## 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 = -I/usr/include/tcl######################################################### ## set TCL_LIBS so that the compiler can find ## libtcl.a and libtk.a ## #########################################################TCL_LIBS = -ltk -ltcl######################################################### ## 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 =######################################################### ## 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 + -