summaryrefslogtreecommitdiff
path: root/itcl/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'itcl/Makefile.in')
-rw-r--r--itcl/Makefile.in92
1 files changed, 70 insertions, 22 deletions
diff --git a/itcl/Makefile.in b/itcl/Makefile.in
index 7e2c2872c1e..c2c68aa43b1 100644
--- a/itcl/Makefile.in
+++ b/itcl/Makefile.in
@@ -23,66 +23,106 @@ subdirs = @subdirs@
SHELL = /bin/sh
all:
- @for dir in $(subdirs) ; do \
- if (echo "Making in $$dir"; cd $$dir && $(MAKE) $@); \
- then true; else exit 1; fi \
+ for dir in $(subdirs) ; do \
+ if test -d $$dir ; then \
+ echo "$$dir: $(MAKE) $@" ;\
+ if (cd $$dir; $(MAKE) $@) ; then true ; else exit 1 ; fi ; \
+ else \
+ exit 1; \
+ fi \
done;
test:
- for dir in $(subdirs) ; do \
- if (echo "Making in $$dir"; cd $$dir && $(MAKE) $@); \
- then true; else exit 1; fi \
+ for dir in itcl itk iwidgets3.0.0 ; do \
+ if test -d $$dir ; then \
+ echo "$$dir: $(MAKE) $@" ;\
+ if (cd $$dir; $(MAKE) $@) ; then true ; else exit 1 ; fi ; \
+ else \
+ exit 1; \
+ fi \
done;
static:
for dir in $(subdirs) ; do \
- if (echo "Making in $$dir"; cd $$dir && $(MAKE) $@); \
- then true; else exit 1; fi \
+ if test -d $$dir ; then \
+ echo "$$dir: $(MAKE) $@" ;\
+ if (cd $$dir; $(MAKE) $@) ; then true ; else exit 1 ; fi ; \
+ else \
+ exit 1; \
+ fi \
done;
standalone:
for dir in $(subdirs) ; do \
- if (echo "Making in $$dir"; cd $$dir && $(MAKE) $@); \
- then true; else exit 1; fi \
+ if test -d $$dir ; then \
+ echo "$$dir: $(MAKE) $@" ;\
+ if (cd $$dir; $(MAKE) $@) ; then true ; else exit 1 ; fi ; \
+ else \
+ exit 1; \
+ fi \
done;
plusplus:
for dir in $(subdirs) ; do \
- if (echo "Making in $$dir"; cd $$dir && $(MAKE) $@); \
- then true; else exit 1; fi \
+ if test -d $$dir ; then \
+ echo "$$dir: $(MAKE) $@" ;\
+ if (cd $$dir; $(MAKE) $@) ; then true ; else exit 1 ; fi ; \
+ else \
+ exit 1; \
+ fi \
done;
install:
for dir in $(subdirs) ; do \
- if (echo "Making in $$dir"; cd $$dir && $(MAKE) $@); \
- then true; else exit 1; fi \
+ if test -d $$dir ; then \
+ echo "$$dir: $(MAKE) $@" ;\
+ if (cd $$dir; $(MAKE) $@) ; then true ; else exit 1 ; fi ; \
+ else \
+ exit 1; \
+ fi \
done;
install-binaries:
for dir in $(subdirs) ; do \
- if (echo "Making in $$dir"; cd $$dir && $(MAKE) $@); \
- then true; else exit 1; fi \
+ if test -d $$dir ; then \
+ echo "$$dir: $(MAKE) $@" ;\
+ if (cd $$dir; $(MAKE) $@) ; then true ; else exit 1 ; fi ; \
+ else \
+ exit 1; \
+ fi \
done;
install-libraries:
for dir in $(subdirs) ; do \
- if (echo "Making in $$dir"; cd $$dir && $(MAKE) $@); \
- then true; else exit 1; fi \
+ if test -d $$dir ; then \
+ echo "$$dir: $(MAKE) $@" ;\
+ if (cd $$dir; $(MAKE) $@) ; then true ; else exit 1 ; fi ; \
+ else \
+ exit 1; \
+ fi \
done;
install-info info install-check:
clean:
for dir in $(subdirs) ; do \
- if (echo "Making in $$dir"; cd $$dir && $(MAKE) $@); \
- then true; else exit 1; fi \
+ if test -d $$dir ; then \
+ echo "$$dir: $(MAKE) $@" ;\
+ if (cd $$dir; $(MAKE) $@) ; then true ; else exit 1 ; fi ; \
+ else \
+ exit 1; \
+ fi \
done;
distclean:
rm -f Makefile config.log config.status config.cache
for dir in $(subdirs) ; do \
- if (echo "Making in $$dir"; cd $$dir && $(MAKE) $@); \
- then true; else exit 1; fi \
+ if test -d $$dir ; then \
+ echo "$$dir: $(MAKE) $@" ;\
+ if (cd $$dir; $(MAKE) $@) ; then true ; else exit 1 ; fi ; \
+ else \
+ exit 1; \
+ fi \
done;
#
@@ -91,4 +131,12 @@ distclean:
# to put the distribution.
#
+# CYGNUS LOCAL
+#configure: configure.in
+# autoconf
+# for dir in $(subdirs) ; do \
+# if (cd $$dir; autoconf) ; then true ; else exit 1 ; fi ; \
+# done;
+# END CYGNUS LOCAL
+
# DO NOT DELETE THIS LINE -- make depend depends on it.