⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 make.def.rhlin

📁 apue第二版每一章节的c语言源码
💻 RHLIN
字号:
# 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -