DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download
Index: ┃ M T

⟦4cae102f1⟧ TextFile

    Length: 1483 (0x5cb)
    Types: TextFile
    Names: »Makefile«

Derivation

└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki
    └─ ⟦this⟧ »EUUGD11/gnu-31mar87/emacs/Makefile« 

TextFile

# make all        to compile and build Emacs
# make install    to intall it
# make tags	  to update tags tables

# make clean	  to delete everything that wasn't in the distribution
#      This is a very dangerous thing to do!

# Where to install things
LIBDIR= /usr/local/emacs
BINDIR= /usr/local/bin
MANDIR= /usr/man/man1

# Subdirectories to make recursively.  `lisp' is not included
#   because the compiled lisp files are part of the distribution
#   and you cannot remake them without installing Emacs first.
SUBDIR= etc src
# Subdirectories to install
COPYDIR= etc info lisp
# Subdirectories to clean
CLEANDIR= ${COPYDIR} lisp/term

all:	${SUBDIR} lock

src:	etc

.RECURSIVE: ${SUBDIR}

${SUBDIR}: FRC
	cd $@; make ${MFLAGS} all

install: all
	-mkdir ${LIBDIR}
	-chmod 777 ${LIBDIR}
	tar cf  - ${COPYDIR} | (cd ${LIBDIR}; tar xpBvf - )
	for i in ${CLEANDIR}; do \
		(rm -rf ${LIBDIR}/$$i/RCS; \
		 rm -f ${LIBDIR}/$$i/\#*; \
		 rm -f ${LIBDIR}/$$i/*~); \
	done
	install -c -s -g kmem -m 2755 etc/loadst ${LIBDIR}/etc/loadst
	install -c -s etc/etags ${BINDIR}/etags
	install -c -s etc/ctags ${BINDIR}/ctags
	install -c -s -m 1755 src/xemacs ${BINDIR}/xemacs
	install -c -m 777 etc/emacs.1 ${MANDIR}/emacs.1
	-rm -f ${BINDIR}/emacs
	mv ${BINDIR}/xemacs ${BINDIR}/emacs

clean:
	for i in ${SUBDIR}; do (cd $$i; make ${MFLAGS} clean; cd ..); done

lock:
	-mkdir ${LIBDIR}/lock
	chmod 777 ${LIBDIR}/lock

FRC:

tags:	etc
	cd src; ../etc/etags *.{c,h} ../lisp/*.el ../lisp/term/*.el