File: Makefile.openbsd

package info (click to toggle)
passwordsafe 1.21.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 28,884 kB
  • sloc: cpp: 84,546; ansic: 1,704; xml: 1,608; makefile: 598; perl: 463; sh: 388; javascript: 40
file content (21 lines) | stat: -rw-r--r-- 329 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
BASEDIRNAME=pwsafe
LANGS=RU DE ES FR ZH PL

ZIP = /usr/local/bin/zip

all: default $(LANGS)

default:
	@cd default ; $(ZIP) -Xqr ../helpEN ./* || true

$(LANGS):
	@cd $(BASEDIRNAME)$@ ; $(ZIP) -Xqr ../help$@ ./* || true

clean:
	$(RM) *.zip || true

.PHONY: all clean default $(LANGS)

# Local variables:
# mode: makefile
# End: