Skip to content

Commit

Permalink
(install-strip): New target.
Browse files Browse the repository at this point in the history
(top_distclean): Use `|| true' to ignore error in rm.
-f failed to do the job on Suns.
  • Loading branch information
Richard M. Stallman committed Mar 20, 1996
1 parent 064f79a commit 99a2d5d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -388,6 +388,11 @@ install-arch-indep: mkdir
chmod a+r ${man1dir}/$${page}${manext}); \
done

### Build Emacs and install it, stripping binaries while installing them.
install-strip:
$(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' \
install

### Build all the directories we're going to install Emacs in. Since
### we may be creating several layers of directories (for example,
### /usr/local/lib/emacs/19.0/mips-dec-ultrix4.2), we use mkinstalldirs
Expand Down Expand Up @@ -468,7 +473,7 @@ clean: FRC
top_distclean=\
rm -f config.status config.cache config.log ; \
rm -f Makefile ${SUBDIR_MAKEFILES} ; \
(cd lock && rm -f *)
(cd lock && (rm * || true))
distclean: FRC
(cd src; $(MAKE) $(MFLAGS) distclean)
(cd oldXMenu; $(MAKE) $(MFLAGS) distclean)
Expand Down

0 comments on commit 99a2d5d

Please sign in to comment.