*** empty log message ***
[bpt/emacs.git] / Makefile.in
index ec62fa3..7c5a3d7 100644 (file)
@@ -5,6 +5,7 @@
 # make install to install it
 # make install.sysv  to install on system V.
 # make install.xenix  to install on Xenix
+# make install.aix    to install on AIX.
 # make tags    to update tags tables
 #
 # make distclean       to delete everything that wasn't in the distribution
@@ -23,7 +24,7 @@ SHELL = /bin/sh
 # already, the `install' targets will move or copy it there.  The
 # default definitions for the variables below are expressed in terms
 # of this one, so you may not need to change them.
-LIBROOT=/u/src/emacs/19.0
+LIBROOT=/gd/gnu/emacs
 
 # This is where the `install' make target should place the binaries
 # people will want to run directly (like etags and Emacs itself).
@@ -34,19 +35,19 @@ INSTALLBIN=/usr/local/bin
 # elisp files should go under DATADIR (below), since both elisp source
 # and compiled elisp are completely portable, but it's traditional to
 # give the lisp files their own subdirectory.
-LISPPATH=/u/src/emacs/19.0/lisp
+LISPPATH=/gd/gnu/emacs/local-lisp:/gd/gnu/emacs/lisp
 
 # Emacs will look here for its architecture-independent files (like
 # the tutorial and the zippy database).
-DATADIR=/u/src/emacs/19.0/share-lib
+DATADIR=/gd/gnu/emacs/share-lib
 
 # Emacs will look here for its architecture-dependent files, like
 # executables for its utilities.
-LIBDIR=/u/src/emacs/19.0/arch-lib
+LIBDIR=/gd/gnu/emacs/arch-lib
 
 # The locking directory, where the Emacs locking code keeps track of
 # which files are currently being edited.
-LOCKDIR=/u/src/emacs/19.0/lock
+LOCKDIR=/gd/gnu/emacs/lock
 
 # This is where the `install' make target should place the man pages
 # for the binaries it installs.
@@ -138,6 +139,24 @@ install.xenix: all mkdir lockdir
        chmod 1755 ${INSTALLBIN}/emacs
        -rm -f ${INSTALLBIN}/emacs.old
 
+install.aix: all mkdir lockdir
+       -if [ `/bin/pwd` != `(cd ${LIBROOT}; /bin/pwd)` ] ; then \
+               tar cf - ${COPYDIR} | (cd ${LIBROOT}; umask 0; tar xBf - ) ;\
+               for i in ${CLEANDIR}; do \
+                       (rm -rf ${LIBROOT}/$$i/RCS; \
+                        rm -f ${LIBROOT}/$$i/\#*; \
+                        rm -f ${LIBROOT}/$$i/*~); \
+               done \
+       else true; \
+       fi
+       install -f ${INSTALLBIN} etc/emacsclient
+       install -f ${INSTALLBIN} etc/etags
+       install -f ${INSTALLBIN} etc/ctags
+       install -M 1755 -f ${INSTALLBIN} src/xemacs
+       install -M 444 -f ${MANDIR} etc/emacs.1
+       -rm -f ${INSTALLBIN}/emacs
+       mv ${INSTALLBIN}/xemacs ${INSTALLBIN}/emacs
+
 mkdir: FRC
        -mkdir ${LIBROOT}
        -chmod 777 ${LIBROOT}