aboutsummaryrefslogtreecommitdiff
path: root/Makefile.am
blob: c4fa7a60fc8d0f3f4261c19d91e0ba8a1f2fb96e (plain)
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
AUTOMAKE_OPTIONS = gnits 1.8 
ACLOCAL_AMFLAGS = -I m4

SUBDIRS=cgi-bin data src xml xtrans po

# FIXME
EXTRANS=python /home/gray/eXtrans/extrans.py
all-local:
	-BASE_HREF="$(BASE_HREF)" TARGET_DIR="$(TARGET_DIR)" $(EXTRANS) $(top_srcdir)/lingua.xtrans

install-html:
	for dir in ru el; do \
		here=`pwd`; \
		cd $(top_srcdir)/html/$$dir; \
		if test -d $(DESTDIR)$(HTMLDIR)/$$dir; then \
			: \
		else \
			$(mkdir_p) $(DESTDIR)$(HTMLDIR)/$$dir; \
		fi; \
		for file in *.html; do \
			${INSTALL} -m 644 $$file $(DESTDIR)$(HTMLDIR)/$$dir/$$file; \
	       	done; \
		cd $$here; \
	done

install-data-local: install-html

Return to:

Send suggestions and report system problems to the System administrator.