make.def.rhlin

来自「unix环境高级编程一书源代码 本书全面介绍了UNIX系统的程序设计界面—系统」· RHLIN 代码 · 共 24 行

RHLIN
24
字号
# Common make definitions for GNU make under 386BSD.# Definitions required in all program directories to compile and link# C programs using gcc.  We also have to get rid of Sun's "-target" options,# as gcc doesn't grok it.CC=gccCOMPILE.c=$(CC) $(CFLAGS) $(CPPFLAGS) -cNOANSICOMPILE.c=$(CC) $(NOANSICFLAGS) $(CPPFLAGS) -cLINK.c=$(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS)LDLIBS=/home/thanlon/apue/libmisc.a		#th# Common definitionsCFLAGS	= -Wall -Wstrict-prototypes -O		#thCFLAGSO	= -Wall -Wstrict-prototypes -O		#th# We don't normally use -O with gcc on the sparc.LIB	= /home/thanlon/apue/libmisc.a		#th# Our library that almost every program needs.TEMPFILES = core core.* *.o temp.* *.out typescript*# Common temp files to delete from each directory.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?