annotate dynload/Makefile.generic @ 357:d982a00c2177
- PPC64 asm syntax fix, specifying explicitly comparison mode for cmpi (newer toolchains complain, older ones took optional field of instruction which happened to be same value)
author
Tassilo Philipp
date
Tue, 25 Feb 2020 18:16:13 +0100 (2020-02-25)
parents
3e629dc19168
children
rev
line source
0
+ − 1 LIBNAME = dynload
+ − 2 OBJS = dynload.o dynload_syms.o
+ − 3 HEADERS = ${VPATH}/dynload.h
+ − 4
+ − 5 LIB = lib${LIBNAME}_s.a
+ − 6
+ − 7 .PHONY: all clean install
+ − 8
+ − 9 all: ${LIB}
+ − 10 ${LIB}: ${OBJS}
+ − 11 ${AR} ${ARFLAGS} ${LIB} ${OBJS}
+ − 12 clean:
+ − 13 rm -f ${OBJS} ${LIB}
+ − 14 install: all
+ − 15 mkdir -p ${PREFIX}/lib
+ − 16 mkdir -p ${PREFIX}/include
+ − 17 cp ${LIB} ${PREFIX}/lib
+ − 18 cp ${HEADERS} ${PREFIX}/include