Website:doc/note subdir and Makefile tree for publishing latex/notes.
[course.git] / latex / notes / Makefile
1 SUBDIRS = topics
2 INSTALL_DIR := $(INSTALL_DIR)/doc/note
3
4 install :
5         @for i in $(SUBDIRS); do \
6         echo "make install in $$i..."; \
7         (cd $$i; $(MAKE) $(MFLAGS) install); done
8
9 clean :
10         @for i in $(SUBDIRS); do \
11         echo "make clean in $$i..."; \
12         (cd $$i; $(MAKE) $(MFLAGS) clean); done