diff options
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in index ca8d266..35977b5 100644 --- a/Makefile.in +++ b/Makefile.in @@ -171,8 +171,8 @@ tags:: # Create a tags file for GNU Emacs TAGS:: - etags -t Include/*.h - for i in $(SUBDIRS); do etags -t -a $$i/*.[ch]; done + etags Include/*.h + for i in $(SUBDIRS); do etags -a $$i/*.[ch]; done # Add dependencies to sub-Makefiles depend: @@ -253,4 +253,4 @@ find: # Build a distribution tar file (run make distclean first) # (This leaves the RCS and CVS directories in :-( ) tar: - tar cf - $(DIST) | compress >dist.tar.Z + tar cf - $(DIST) | gzip --best >dist.tar.gz |