1data = about.jp about.en endinglist.xml endinglist-ja.xml searchengines.xml shortcut.xml filter.xml
2
3all: $(data)
4
5check: all
6
7install:
8	if test -r $(MKINSTALLDIRS); then \
9		$(MKINSTALLDIRS) $(pkgdatadir); \
10	else \
11		$(top_srcdir)/mkinstalldirs $(pkgdatadir); \
12	fi; \
13	data="$(data)"; \
14	for file in $$data; do \
15		$(INSTALL_DATA) $(srcdir)/$$file $(pkgdatadir)/$$file; \
16	done;
17
18# Define this as empty until I found a useful application.
19installcheck:
20
21uninstall:
22	data="$(data)"; \
23	for file in $$data; do \
24	  rm -f $(pkgdatadir)/$$file; \
25	done
26
27mostlyclean:
28	rm -f *.a *.o *.lo core core.* *~
29
30clean: mostlyclean
31
32distclean: clean
33	rm -f Makefile about.jp about.en
34
35