File: Makefile

package info (click to toggle)
multistrap 2.2.11
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 1,012 kB
  • sloc: perl: 1,524; sh: 520; makefile: 127
file content (24 lines) | stat: -rw-r--r-- 365 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

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
	$(RM) po/*.gmo po/*.mo

# adds the POT file to the source tarball
native-dist: Makefile
	./po4a-build --pot-only
	$(MAKE) -C po pot