view test/sharedlib/Makefile.embedded @ 161:b8c23c9232c7

- marked linux sparc as fully supported, as callback support is in and tests all confirmed working
author cslag
date Thu, 29 Dec 2016 10:55:56 -0600
parents 3e629dc19168
children
line wrap: on
line source

MAKEFILE  = Makefile.embedded
MAKE_CMD  = ${MAKE} -f ${MAKEFILE}
TARGET    = libsharedlib.so
OBJS      = sharedlib.o
CPPFLAGS += -I../../dynload
LDFLAGS  += -L../../dynload
LDLIBS   += -ldynload_s

${TARGET}: ${OBJS}
	${CC} -shared -o $@ $? ${LDFLAGS} ${LDLIBS}
all: ${TARGET}
clean:
	rm -f ${TARGET} ${OBJS}

sun-gcc:
	CC=gcc CFLAGS="${CFLAGS} -fPIC" ${MAKE_CMD} all