URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gdb-7.1/] [gdb/] [testsuite/] [gdb.hp/] [gdb.base-hp/] [so-thresh.mk] - Rev 227
Compare with Previous | Blame | View Log
# 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-threshif ! [ -a lib00-so-thresh.c ] ; then \genso-thresh ; \fiif ! [ -a lib01-so-thresh.c ] ; then \genso-thresh ; \fiif ! [ -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.cSHLIB_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.crm -f so-thresh
