improve ucl for dealing with new repo
[clawsker.git] / Makefile
index ab70ac7919a908770ab86740fbfc5596a7d3e557..48b983496139d530387e4cf8a926720ae16d584f 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -16,28 +16,32 @@ all: build
 
 build:
        -mkdir build
-       sed -e "s,@PREFIX@,${PREFIX},;s,@LIBDIR@,${LIBDIR},;s,@VERSION@,${VERSION}," \
-               < ${NAME} > build/${NAME}
-       pod2man ${NAME} > build/${NAME}.1
+       sed -e "s,@PREFIX@,${PREFIX},;s,@LIBDIR@,${LIBDIR},;s,@VERSION@,${VERSION}," < ${NAME} > build/${NAME}
+       pod2man --release ${VERSION} -c '' ${NAME}.pod > build/${NAME}.1
+       ${MAKE} -C po build
        
 
 install: all install-dirs
        install -m 0755 build/${NAME} ${DESTDIR}${BINDIR}
        install -m 0644 build/${NAME}.1 ${DESTDIR}${MAN1DIR}
+       ${MAKE} -C po install
 
 install-dirs:
        install -d ${DESTDIR}${BINDIR}
        install -d ${DESTDIR}${MAN1DIR}
+       ${MAKE} -C po install-dirs
 
 uninstall:
        rm -f ${DESTDIR}${BINDIR}/${NAME}
        rm -f ${DESTDIR}${MAN1DIR}/${NAME}.1
+       ${MAKE} -C po uninstall
 
 clean-build:
        rm -rf build
 
-clean:
-       rm -f ${NAME}.1 *~
+clean: clean-build
+       rm -f *~
+       ${MAKE} -C po clean
 
 .PHONY: all build install install-dirs uninstall clean clean-build