Diff for /mqtt/lib/Attic/Makefile between versions 1.1 and 1.3

version 1.1, 2011/11/07 08:47:16 version 1.3, 2012/07/03 09:02:50
Line 12  libdir = ${exec_prefix}/lib Line 12  libdir = ${exec_prefix}/lib
   
 INSTALL = /usr/bin/install -c  INSTALL = /usr/bin/install -c
   
VERS = 1.0RTLM_PUB = mqtt_pub.so
LIBSO = libaitmqtt.soRTLM_ACC = mqtt_acc.so
LIBA = libaitmqtt.aRTLM_LOG = mqtt_log.so
   
 all:  all:
         @ln -sf ${LIBSO} ${LIBSO}.${VERS}  
   
 depend:  depend:
   
 clean:  clean:
        @rm -f ${LIBSO} ${LIBA} ${LIBSO}.${VERS} *~        @rm -f *~ ${RTLM_PUB} ${RTLM_ACC} ${RTLM_LOG}
   
 install:  install:
        ${INSTALL} ${LIBA} ${libdir}        ${INSTALL} -d ${libdir}/mqtt
        ${INSTALL} ${LIBSO} ${libdir}        ${INSTALL} ${RTLM_PUB} ${libdir}/mqtt
        @ln -fs ${libdir}/${LIBSO} ${libdir}/${LIBSO}.${VERS}        ${INSTALL} ${RTLM_ACC} ${libdir}/mqtt
         ${INSTALL} ${RTLM_LOG} ${libdir}/mqtt

Removed from v.1.1  
changed lines
  Added in v.1.3


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>