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

📄 so-thresh.mk

📁 模拟嵌入式硬件平台的软件源代码
💻 MK
字号:
# Make file for so-thresh testOBJDIR=.SRCDIR=.CFLAGS = +DA1.1 -gCC=cc# This is how to build this generator.genso-thresh.o: ${SRCDIR}/genso-thresh.c	$(CC) $(CFLAGS) -o genso-thresh.o -c ${SRCDIR}/genso-thresh.cgenso-thresh: genso-thresh.o	$(CC) $(CFLAGS) -o genso-thresh genso-thresh.o# This is how to run this generator.# This target should be made before the 'all' target,# to ensure that the shlib sources are all available.require_shlibs: genso-thresh	if ! [ -a lib00-so-thresh.c ] ; then \	  genso-thresh ; \	fi	if ! [ -a lib01-so-thresh.c ] ; then \	  genso-thresh ; \	fi	if ! [ -a lib02-so-thresh.c ] ; then \	  genso-thresh ; \	fi# This is how to build all the shlibs.# Be sure to first make the require_shlibs target!lib00-so-thresh.o: lib00-so-thresh.c	$(CC) $(CFLAGS) +Z -o lib00-so-thresh.o -c lib00-so-thresh.clib00-so-thresh.sl: lib00-so-thresh.o	$(LD) $(LDFLAGS) -b -o lib00-so-thresh.sl lib00-so-thresh.olib01-so-thresh.o: lib01-so-thresh.c	$(CC) $(CFLAGS) +Z -o lib01-so-thresh.o -c lib01-so-thresh.clib01-so-thresh.sl: lib01-so-thresh.o	$(LD) $(LDFLAGS) -b -o lib01-so-thresh.sl lib01-so-thresh.olib02-so-thresh.o: lib02-so-thresh.c	$(CC) $(CFLAGS) +Z -o lib02-so-thresh.o -c lib02-so-thresh.clib02-so-thresh.sl: lib02-so-thresh.o	$(LD) $(LDFLAGS) -b -o lib02-so-thresh.sl lib02-so-thresh.o# For convenience, here's names for all pieces of all shlibs.SHLIB_SOURCES = \	lib00-so-thresh.c \	lib01-so-thresh.c \	lib02-so-thresh.c SHLIB_OBJECTS = $(SHLIB_SOURCES:.c=.o)SHLIBS = $(SHLIB_SOURCES:.c=.sl)SHLIB_NAMES = $(SHLIB_SOURCES:.c=)EXECUTABLES = $(SHLIBS) genso-thresh so-threshOBJECT_FILES = $(SHLIB_OBJECTS) genso-thresh.o so-thresh.oshlib_objects: $(SHLIB_OBJECTS)shlibs: $(SHLIBS)# This is how to build the debuggable testcase that uses the shlibs.so-thresh.o: so-thresh.c	$(CC) $(CFLAGS) -o so-thresh.o -c so-thresh.cso-thresh: shlibs so-thresh.o	$(LD) $(LDFLAGS) -o so-thresh -lc -L${OBJDIR} -c so-thresh.lopt /opt/langtools/lib/end.o /lib/crt0.o so-thresh.o# Yeah, but you should first make the require_shlibs target!all: so-thresh genso-thresh# To remove everything built via this makefile...clean:	rm -f lib0*-so-thresh.*	rm -f *.o genso-thresh so-thresh.lopt so-thresh.c	rm -f so-thresh

⌨️ 快捷键说明

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