File: Makefile.am

package info (click to toggle)
ebview 0.3.6.2-1.2
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 3,864 kB
  • sloc: ansic: 35,588; sh: 10,714; xml: 1,771; makefile: 608; yacc: 291
file content (34 lines) | stat: -rw-r--r-- 674 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
30
31
32
33
34
data = about.jp about.en endinglist.xml endinglist-ja.xml searchengines.xml shortcut.xml filter.xml

all: $(data)

check: all

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

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

uninstall:
	data="$(data)"; \
	for file in $$data; do \
	  rm -f $(pkgdatadir)/$$file; \
	done

mostlyclean:
	rm -f *.a *.o *.lo core core.* *~

clean: mostlyclean

distclean: clean
	rm -f Makefile about.jp about.en