makefile.sun

来自「opensolaris操作系统下面的一些练习用源码opensolaris操作系统」· SUN 代码 · 共 58 行

SUN
58
字号
## -*- 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 + =
减小字号Ctrl + -
显示快捷键?