summaryrefslogtreecommitdiff
path: root/itcl/Makefile.in
diff options
context:
space:
mode:
authorIan Roxborough <irox@redhat.com>2001-09-09 19:49:03 +0000
committerIan Roxborough <irox@redhat.com>2001-09-09 19:49:03 +0000
commit57e8350a3895a1579b77cc134d6d7d49b056678e (patch)
tree7584c16f5407dd1371b8290109b3b822067afd5a /itcl/Makefile.in
parent7467241ff2a5cd6da7bbecb7111fc0dc3211c7de (diff)
downloadgdb-57e8350a3895a1579b77cc134d6d7d49b056678e.tar.gz
Itcl import for Tcl/Tk8.3 upgradeITCL_TCL_8_3
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.