?? so-thresh.mk
字號(hào):
# Make file for so-thresh testOBJDIR=.SRCDIR=.CFLAGS = +DA1.1 -g# 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
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -