Default switchSPST type should be open in Circ.asy.
[course.git] / pdf / exam / Makefile
1 # give numbers for the exams
2 EXAM_NUMS = 
3 OTHER_DIRS = 
4
5 INSTALL_DIR := $(INSTALL_DIR)/doc/exam
6 export INSTALL_DIR
7
8 install :
9         @for i in $(EXAM_NUMS:%=exam%) $(OTHER_DIRS); do \
10         echo "make install in $$i..."; \
11         (cd $$i; $(MAKE) $(MFLAGS) install); done
12
13 clean :
14         @for i in $(EXAM_NUMS:%=exam%) $(OTHER_DIRS); do \
15         echo "make clean in $$i..."; \
16         (cd $$i; $(MAKE) $(MFLAGS) clean); done