summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1993-12-28 19:39:56 (GMT)
committerGuido van Rossum <guido@python.org>1993-12-28 19:39:56 (GMT)
commit810a92f95b7f3cfc702b9fbc825dcfed01d22c3b (patch)
treee2c5aa2b344c6e1b7dc9217b8c361112dcc788f7 /Makefile.in
parent6d5ebe24ee36e97af834ac0d5dc903ef801e89a1 (diff)
downloadcpython-810a92f95b7f3cfc702b9fbc825dcfed01d22c3b.zip
cpython-810a92f95b7f3cfc702b9fbc825dcfed01d22c3b.tar.gz
cpython-810a92f95b7f3cfc702b9fbc825dcfed01d22c3b.tar.bz2
Added depend target; cosmetic changes to other targets
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in23
1 files changed, 18 insertions, 5 deletions
diff --git a/Makefile.in b/Makefile.in
index 36d213a..20a4acb 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -6,7 +6,18 @@ DISTFILES= README Makefile configure configure.in
DIST= $(DISTFILES) $(SUBDIRS) $(SUBDIRSTOO)
all: config.status
- for i in $(SUBDIRS); do (echo $$i; cd $$i; $(MAKE) all); done
+ for i in $(SUBDIRS); do \
+ (echo $$i; cd $$i; $(MAKE) all); \
+ done
+
+tags: ctags -t Parser/*.[ch] Objects/*.[ch] Python/*.[ch] Include/*.h
+
+TAGS: etags -t Parser/*.[ch] Objects/*.[ch] Python/*.[ch] Include/*.h
+
+depend:
+ for i in $(SUBDIRS); do \
+ (echo $$i; cd $$i; $(MAKE) depend); \
+ done
localclean:
-rm -f core *~ [@,#]* *.old *.orig *.rej
@@ -14,12 +25,15 @@ localclean:
clean: localclean
-for i in $(SUBDIRS); do \
- (echo $$i;cd $$i;$(MAKE) clean); \
+ (echo $$i; cd $$i; $(MAKE) clean); \
done
-clobber: localclean
+localclobber: localclean
+ -rm -f tags TAGS config.status
+
+clobber: localclobber
-for i in $(SUBDIRS); do \
- (echo $$i;cd $$i;$(MAKE) clobber); \
+ (echo $$i; cd $$i; $(MAKE) clobber); \
done
distclean: clobber
@@ -28,7 +42,6 @@ distclean: clobber
rm -f $$i/Makefile; \
fi; \
done
- -rm -f config.status
Makefiles: config.status
./config.status