Added solutions for rec7.
[course.git] / latex / rec / Makefile
1 # give numbers for assigned recitations
2 REC_NUMS = 
3 # give numbers for recitations whose solutions should be posted
4 # (don't install source until the solutions should be published)
5 SOLN_NUMS = 
6
7 INSTALL_DIR := $(INSTALL_DIR)/doc/rec
8 export INSTALL_DIR
9
10 install :
11         @for i in $(REC_NUMS:%=rec%); do \
12         echo "make install-probs in $$i..."; \
13         (cd $$i; $(MAKE) $(MFLAGS) install-probs); done
14         @for i in $(SOLN_NUMS:%=rec%); do \
15         echo "make install-solns in $$i..."; \
16         (cd $$i; $(MAKE) $(MFLAGS) install-solns); done
17
18 clean :
19         @for i in $(REC_NUMS:%=rec%); do \
20         echo "make clean in $$i..."; \
21         (cd $$i; $(MAKE) $(MFLAGS) clean); done