1# Note: four translation subdirs are present: tex_es, tex_it
2# tex_pt and tex_gl. These can be added to SUBDIRS if wanted.
3
4SUBDIRS = tex
5
6.PHONY : subdirs $(SUBDIRS) clean install distclean
7
8subdirs: $(SUBDIRS)
9
10$(SUBDIRS):
11	$(MAKE) -C $@
12
13clean:
14	for d in $(SUBDIRS) ; do \
15	$(MAKE) -C $$d clean ; done
16
17install:
18	for d in $(SUBDIRS) ; do \
19	$(MAKE) -C $$d install ; done
20
21distclean: clean
22	for d in $(SUBDIRS) commands reference ; do \
23	$(MAKE) -C $$d distclean ; done
24	rm -f Makefile *.sty
25