view dynload/Makefile.generic @ 377:51af8ec8d8e6

- simplified thunk-test memory error handling (sigaction setup not needed for this single-threaded test; did also set mutually exclusive union members)
author Tassilo Philipp
date Mon, 28 Dec 2020 14:09:09 +0100
parents 3e629dc19168
children
line wrap: on
line source

LIBNAME = dynload
OBJS 	= dynload.o dynload_syms.o
HEADERS = ${VPATH}/dynload.h 

LIB = lib${LIBNAME}_s.a

.PHONY: all clean install

all: ${LIB}
${LIB}: ${OBJS}
	${AR} ${ARFLAGS} ${LIB} ${OBJS}
clean:
	rm -f ${OBJS} ${LIB}
install: all
	mkdir -p ${PREFIX}/lib
	mkdir -p ${PREFIX}/include
	cp ${LIB} ${PREFIX}/lib
	cp ${HEADERS} ${PREFIX}/include