version 1.2, 2024/03/14 23:49:29
|
version 1.2.2.1, 2024/03/18 10:08:59
|
Line 13 INSTALL = @INSTALL@
|
Line 13 INSTALL = @INSTALL@
|
INC = ../inc |
INC = ../inc |
LIB = ../lib |
LIB = ../lib |
|
|
|
LIBSO = libelwix.so |
|
|
DEBNAME=${PACKAGE_NAME}_${PACKAGE_VERSION}-${PACKAGE_REV}_${PACKAGE_ARCH} |
DEBNAME=${PACKAGE_NAME}_${PACKAGE_VERSION}-${PACKAGE_REV}_${PACKAGE_ARCH} |
|
|
all: depend |
all: depend |
dpkg -b ${DEBNAME} | dpkg-deb -b --root-owner-group ${DEBNAME} |
|
|
depend: |
depend: |
mkdir -p ${DEBNAME}/DEBIAN |
mkdir -p ${DEBNAME}/DEBIAN |
Line 26 depend:
|
Line 28 depend:
|
${INSTALL} ${INC}/elwix.h ${DEBNAME}${includedir} |
${INSTALL} ${INC}/elwix.h ${DEBNAME}${includedir} |
${INSTALL} -d ${DEBNAME}${includedir}/elwix |
${INSTALL} -d ${DEBNAME}${includedir}/elwix |
${INSTALL} ${INC}/elwix/*.h ${DEBNAME}${includedir}/elwix |
${INSTALL} ${INC}/elwix/*.h ${DEBNAME}${includedir}/elwix |
${INSTALL} ${LIB}/libelwix.so ${DEBNAME}${libdir} | ${INSTALL} ${LIB}/${LIBSO} ${DEBNAME}${libdir} |
ln -sf libelwix.so ${DEBNAME}${libdir}/libelwix.so.${PACKAGE_VERSION} | ln -sf ${libdir}/${LIBSO} ${DEBNAME}${libdir}/${LIBSO}.${PACKAGE_VERSION} |
|
|
clean: |
clean: |
rm -rf *~ |
rm -rf *~ |