836506554e
git-svn-id: http://emdebian.org/svn/current@6702 563faec7-e20c-0410-992a-a66f704d0ccd
23 lines
337 B
Makefile
23 lines
337 B
Makefile
|
|
DESTDIR ?=
|
|
PREFIX ?= /usr
|
|
DEST = $(DESTDIR)$(PREFIX)
|
|
|
|
all: docbuild
|
|
$(MAKE) -C po
|
|
|
|
docbuild:
|
|
po4a-build
|
|
|
|
install:
|
|
$(MAKE) -C po install DESTDIR=../debian/multistrap
|
|
|
|
clean:
|
|
$(RM) *~
|
|
$(MAKE) -C doc clean
|
|
$(MAKE) -C po clean
|
|
|
|
# adds the POT file to the source tarball
|
|
native-dist: Makefile
|
|
po4a-build --pot-only
|
|
$(MAKE) -C po pot
|