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

📄 makefile.sun

📁 opensolaris操作系统下面的一些练习用源码opensolaris操作系统下面的一些练习用源码
💻 SUN
字号:
## -*- Makefile -*-#### User: root## Time: Jun 4, 2007 2:56:19 PM## Makefile created by Sun Studio.#### This file is generated automatically.###### Compiler and tool definitions shared by all build targets #####CC = ccBASICOPTS = -gCFLAGS = $(BASICOPTS) -xCC# Define the target directories.TARGETDIR_test.so.sun=Sun-x86-Solarisall: $(TARGETDIR_test.so.sun)/test.so.sun## Target: test.so.sunCFLAGS_test.so.sun = -Kpic OBJS_test.so.sun =  \	$(TARGETDIR_test.so.sun)/testmake.o# Link or archiveSHAREDLIB_FLAGS_test.so.sun = -G  -h test.so.sun $(TARGETDIR_test.so.sun)/test.so.sun: $(TARGETDIR_test.so.sun) $(OBJS_test.so.sun) $(DEPLIBS_test.so.sun)	$(LINK.c) $(CFLAGS_test.so.sun) $(CPPFLAGS_test.so.sun) -o $@ $(OBJS_test.so.sun) $(SHAREDLIB_FLAGS_test.so.sun) $(LDLIBS_test.so.sun)# Compile source files into .o files$(TARGETDIR_test.so.sun)/testmake.o: $(TARGETDIR_test.so.sun) testmake.c	$(COMPILE.c) $(CFLAGS_test.so.sun) $(CPPFLAGS_test.so.sun) -o $@ testmake.c#### Clean target deletes all generated files ####clean:	rm -f \		$(TARGETDIR_test.so.sun)/test.so.sun \		$(TARGETDIR_test.so.sun)/testmake.o	rm -f -r $(TARGETDIR_test.so.sun)# Create the target directory (if needed)$(TARGETDIR_test.so.sun):	mkdir -p $(TARGETDIR_test.so.sun)# Enable dependency checking.KEEP_STATE:.KEEP_STATE_FILE:.make.state.Sun-x86-Solaris

⌨️ 快捷键说明

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