summaryrefslogtreecommitdiffstats
path: root/otherlibs/labltk/Makefile
diff options
context:
space:
mode:
authorJun FURUSE / 古瀬 淳 <jun.furuse@gmail.com>2002-05-03 12:56:42 +0000
committerJun FURUSE / 古瀬 淳 <jun.furuse@gmail.com>2002-05-03 12:56:42 +0000
commit98701d0a029b560b6d9d09e81335883f97703d31 (patch)
tree3f91c8b5d4b3705f068f35ef0a96c1109bb45952 /otherlibs/labltk/Makefile
parente8c2dc41302037a3ce3912be239ae7f49763eb50 (diff)
clean fix
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@4768 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'otherlibs/labltk/Makefile')
-rw-r--r--otherlibs/labltk/Makefile11
1 files changed, 5 insertions, 6 deletions
diff --git a/otherlibs/labltk/Makefile b/otherlibs/labltk/Makefile
index 758d08a9c..526c6128e 100644
--- a/otherlibs/labltk/Makefile
+++ b/otherlibs/labltk/Makefile
@@ -1,5 +1,8 @@
# Top Makefile for mlTk
+SUBDIRS=compiler support lib jpf frx tkanim examples_labltk \
+ camltk labltk examples_camltk browser
+
all:
cd support; $(MAKE)
cd compiler; $(MAKE)
@@ -65,10 +68,6 @@ installopt:
cd tkanim; $(MAKE) installopt
partialclean clean:
- for d in compiler support lib jpf frx tkanim \
- examples_labltk examples_camltk browser; do \
- cd $$d; $(MAKE) clean; cd ..; \
- done
- for d in camltk labltk; do \
- cd $$d; $(MAKE) -f Makefile.gen clean; cd ..; \
+ for d in $(SUBDIRS); do \
+ cd $$d; $(MAKE) -f Makefile clean; cd ..; \
done