Simplify Wire and Pendulum labeling to respect Label attributes in Mechanics.asy.
[course.git] / pdf / lab / Makefile
1 # give numbers for the labs
2 LAB_NUMS = 
3 OTHER_DIRS = sample-lab
4
5 INSTALL_DIR := $(INSTALL_DIR)/doc/lab
6 export INSTALL_DIR
7
8 install :
9         @for i in $(LAB_NUMS:%=lab%) $(OTHER_DIRS); do \
10         echo "make install in $$i..."; \
11         (cd $$i; $(MAKE) $(MFLAGS) install); done
12
13 clean :
14         @for i in $(LAB_NUMS:%=lab%) $(OTHER_DIRS); do \
15         echo "make clean in $$i..."; \
16         (cd $$i; $(MAKE) $(MFLAGS) clean); done