version 1.1.1.1, 2011/11/07 08:47:16
|
version 1.2.2.1, 2012/01/30 08:29:55
|
Line 12 libdir = ${exec_prefix}/lib
|
Line 12 libdir = ${exec_prefix}/lib
|
|
|
INSTALL = /usr/bin/install -c |
INSTALL = /usr/bin/install -c |
|
|
VERS = 1.0 | RTLM_PUB = mqtt_pub.so |
LIBSO = libaitmqtt.so | RTLM_ACC = mqtt_acc.so |
LIBA = libaitmqtt.a | RTLM_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 |