Skip to content

Commit

Permalink
Update install target to use shared lib.
Browse files Browse the repository at this point in the history
  • Loading branch information
cchambreau committed Oct 21, 2020
1 parent fb304cb commit a2cd232
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -250,12 +250,12 @@ else
${API_OBJS} : mpiPconfig.h mpiPi.h mpiPi_proto.h mpip_timers.h
endif

install:: ${C_TARGET} ${DEMANGLE_TARGET} ${FORTRAN_TARGET}
install:: ${SHARED_C_TARGET} ${DEMANGLE_TARGET} ${FORTRAN_TARGET}
mkdir -p ${DESTDIR}${libdir} ${DESTDIR}${docdir}
${INSTALL} ${C_TARGET} ${DESTDIR}${libdir}/${C_TARGET}
${INSTALL} ${SHARED_C_TARGET} ${DESTDIR}${libdir}/${SHARED_C_TARGET}
if test "x${DEMANGLE_TARGET}" != "x" ; then ${INSTALL} ${DEMANGLE_TARGET} ${DESTDIR}${libdir}/${DEMANGLE_TARGET} ; fi
if test "x${FORTRAN_TARGET}" != "x" ; then ${INSTALL} ${FORTRAN_TARGET} ${DESTDIR}${libdir}/${FORTRAN_TARGET} ; fi
${INSTALL} doc/*txt doc/*html doc/README ${DESTDIR}${docdir} ; \
${INSTALL} doc/*md doc/*html doc/*pdf doc/README ${DESTDIR}${docdir} ; \

install-api: API
mkdir -p ${DESTDIR}${libdir} ${DESTDIR}${includedir}/mpip_timers
Expand Down

0 comments on commit a2cd232

Please sign in to comment.