File: Makefile.am

package info (click to toggle)
ebview 0.3.6-9
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 3,344 kB
  • ctags: 1,899
  • sloc: ansic: 24,290; sh: 7,910; xml: 1,771; makefile: 327; sed: 93
file content (29 lines) | stat: -rwxr-xr-x 575 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
dir = ja en
data = index.html menu.html body.html

all: 

check: all

install:
	dir="$(dir)"; \
	for lang in $$dir; do \
		if test -r $(MKINSTALLDIRS); then \
			$(MKINSTALLDIRS) $(pkgdatadir)/help/$$lang; \
		else \
			$(top_srcdir)/mkinstalldirs $(pkgdatadir)/help/$$lang; \
		fi; \
	done; \
	data="$(data)"; \
	for lang in $$dir; do \
		for file in $$data; do \
			$(INSTALL_DATA) $(srcdir)/$$lang/$$file $(pkgdatadir)/help/$$lang/$$file; \
		done; \
	done;

# Define this as empty until I found a useful application.
installcheck:

uninstall:
	rm -fr $(pkgdatadir)/help