received translations and updates
[clawsker.git] / Makefile
index ab70ac7919a908770ab86740fbfc5596a7d3e557..954ec3027e6cf03bc93a8c5812977aad65f43226 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -19,25 +19,30 @@ build:
        sed -e "s,@PREFIX@,${PREFIX},;s,@LIBDIR@,${LIBDIR},;s,@VERSION@,${VERSION}," \
                < ${NAME} > build/${NAME}
        pod2man ${NAME} > 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