head	1.1;
branch	1.1.1;
access;
symbols
	EMACS_21_3:1.1.1.6
	EMACS_21_2:1.1.1.5
	EMACS_21_1:1.1.1.5
	EMACS_21_0_106:1.1.1.5
	EMACS_21_0_105:1.1.1.5
	EMACS_21_0_103:1.1.1.5
	EMACS_20_7:1.1.1.5
	EMACS_20_6:1.1.1.5
	EMACS_20_5:1.1.1.5
	EMACS_20_4:1.1.1.5
	EMACS_20_3:1.1.1.5
	EMACS_20_2:1.1.1.5
	EMACS_20_1:1.1.1.5
	EMACS_19_34:1.1.1.5
	EMACS_19_33:1.1.1.5
	EMACS_19_32:1.1.1.5
	EMACS_19_31:1.1.1.5
	EMACS_19_30:1.1.1.5
	EMACS_19_29:1.1.1.5
	EMACS_19_28:1.1.1.4
	EMACS_19_27:1.1.1.4
	EMACS_19_26:1.1.1.4
	EMACS_19_25:1.1.1.4
	EMACS_19_24:1.1.1.4
	EMACS_19_23:1.1.1.4
	EMACS_19_22:1.1.1.3
	EMACS_19_21:1.1.1.3
	EMACS_19_20:1.1.1.3
	EMACS_19_19:1.1.1.3
	EMACS_19_18:1.1.1.3
	EMACS_19_17:1.1.1.3
	EMACS_19_16:1.1.1.3
	EMACS_19_15:1.1.1.3
	EMACS_19_14:1.1.1.3
	EMACS_19_13:1.1.1.2
	EMACS_19_12:1.1.1.2
	EMACS_19_11:1.1.1.2
	EMACS_19_10:1.1.1.2
	EMACS_19_9:1.1.1.2
	EMACS_19_8:1.1.1.2
	EMACS_19_7:1.1.1.2
	EMACS_18_59:1.1.1.1
	FSF_DIST:1.1.1;
locks; strict;
comment	@# @;


1.1
date	2004.11.05.07.57.15;	author Ben Wing;	state Exp;
branches
	1.1.1.1;
next	;

1.1.1.1
date	2004.11.05.07.57.15;	author Ben Wing;	state Exp;
branches;
next	1.1.1.2;

1.1.1.2
date	2004.11.05.07.57.50;	author Ben Wing;	state Exp;
branches;
next	1.1.1.3;

1.1.1.3
date	2004.11.05.08.18.01;	author Ben Wing;	state Exp;
branches;
next	1.1.1.4;

1.1.1.4
date	2004.11.05.08.47.26;	author Ben Wing;	state Exp;
branches;
next	1.1.1.5;

1.1.1.5
date	2004.11.05.09.10.09;	author Ben Wing;	state Exp;
branches;
next	1.1.1.6;

1.1.1.6
date	2004.11.05.11.15.08;	author Ben Wing;	state Exp;
branches;
next	;


desc
@@


1.1
log
@Initial revision
@
text
@CFLAGS= -g
# For Xenix.  Needed for movemail
#  LOADLIBES= -lx
# For Mips.  Needed for who knows what.
#  CFLAGS = -g -systype bsd43

EXECUTABLES = test-distrib etags ctags wakeup make-docfile \
   digest-doc sorted-doc movemail cvtmail fakemail yow env \
   server emacsclient

all: ${EXECUTABLES}

clean:
	-rm -f ${EXECUTABLES} core

distclean:
	-rm -f ${EXECUTABLES} *~ \#* DOC* core

# This justs verifies that the non-ASCII characters
# in the file `testfile' have no been clobbered by
# whatever means were used to copy and distribute Emacs.
# If they were clobbered, all the .elc files were clobbered too.
test-distrib: test-distrib.c
	$(CC) -o test-distrib test-distrib.c
	./test-distrib

etags: etags.c
	$(CC) -o etags ${CFLAGS} -DETAGS etags.c $(LOADLIBES)

ctags: etags.c
	$(CC) -o ctags ${CFLAGS} -DCTAGS etags.c $(LOADLIBES)

wakeup: wakeup.c
	$(CC) -o wakeup ${CFLAGS} wakeup.c $(LOADLIBES)

make-docfile: make-docfile.c
	$(CC) -o make-docfile ${CFLAGS} make-docfile.c $(LOADLIBES)

digest-doc: digest-doc.c
	$(CC) -o digest-doc ${CFLAGS} digest-doc.c $(LOADLIBES)

sorted-doc: sorted-doc.c
	$(CC) -o sorted-doc ${CFLAGS} sorted-doc.c $(LOADLIBES)

#
movemail: movemail.c ../src/config.h
	$(CC) -o movemail ${CFLAGS} movemail.c $(LOADLIBES)

cvtmail: cvtmail.c
	$(CC) -o cvtmail ${CFLAGS} cvtmail.c $(LOADLIBES)

fakemail: fakemail.c ../src/config.h
	$(CC) -o fakemail ${CFLAGS} fakemail.c $(LOADLIBES)

yow: yow.c ../src/paths.h
	$(CC) -o yow ${CFLAGS} yow.c $(LOADLIBES)

# this is silly -- just use emacs to edit this file!
# (in any case this program doesn't preserve alphabetical ordering,
#  which is why I'm removing it)
#addyow: addyow.c
#	$(CC) -o addyow ${CFLAGS} addyow.c

env: env.c ../src/config.h
	$(CC) -o env -DEMACS ${CFLAGS} env.c $(LOADLIBES)

server: server.c ../src/config.h
	$(CC) -o server ${CFLAGS} server.c $(LOADLIBES)

emacsclient: emacsclient.c ../src/config.h
	$(CC) -o emacsclient ${CFLAGS} emacsclient.c $(LOADLIBES)

# This one is NOT included in EXECUTABLES.
# See ../src/ymakefile.
emacstool: emacstool.c
	$(CC) -o emacstool ${CFLAGS} emacstool.c -lsuntool -lsunwindow -lpixrect $(LOADLIBES)

nemacstool: emacstool.c
	$(CC) -o nemacstool ${CFLAGS} -DJLE emacstool.c -lsuntool -lmle -lsunwindow -lpixrect $(LOADLIBES)	# For SUN Japanese Language Environment

xvetool: emacstool.c
	$(CC) -o xvetool ${CFLAGS} -DXVIEW         emacstool.c -lxview -lolgx -lX -I$(OPENWINHOME)/include -L$(OPENWINHOME)/lib $(LOADLIBES)

xveterm: emacstool.c
	$(CC) -o xveterm ${CFLAGS} -DXVIEW -DTTERM emacstool.c -lxview -lolgx -lX -I$(OPENWINHOME)/include -L$(OPENWINHOME)/lib $(LOADLIBES)


@


1.1.1.1
log
@import emacs-18.59
@
text
@@


1.1.1.2
log
@import emacs-19.7
@
text
@d1 9
a9 5
DESTDIR=
LIBDIR=/usr/local/lib
BINDIR=/usr/local/bin
MANDIR=/usr/man/man1
MANEXT=1
d11 4
a14 1
all:
d17 31
a47 1
	-rm -f *~ \#* DOC* core
d49 34
a82 2
clean:
	-rm -f core
d84 2
a85 3
SOURCES = [0-9A-QS-Z]* README *.[ch16] emacs.* etags.* ledit.l ms-* \
	news.texi rc2log refcard.tex spook-lines termcap.* ulimit.hack \
	vcdiff vipcard.tex xmouse.doc
a86 2
unlock:
	chmod u+w $(SOURCES)
a87 2
relock:
	chmod u-w $(SOURCES)
@


1.1.1.3
log
@import emacs-19.14
@
text
@d9 4
a12 1
mostlyclean clean:
a14 3
distclean realclean:
	-rm -f DOC* core

@


1.1.1.4
log
@import emacs-19.23
@
text
@d9 1
a9 1
mostlyclean:
d12 1
a12 1
clean distclean realclean:
@


1.1.1.5
log
@import emacs-19.29
@
text
@d12 1
a12 1
clean distclean maintainer-clean:
a23 10

# ${etcdir}/e/eterm is used by ../lisp/term.el.
# TERMINFO systems use terminfo files compiled by the Terminfo Compiler (tic).
# These files are binary, and depend on the version of tic, but they seem
# to be system-independent and backwardly compatible.
# So there should be no need to recompile the distributed binary version.
TIC=tic
e/eterm: e/eterm.ti
	TERMINFO=`pwd`; export TERMINFO; $(TIC) e/eterm.ti

@


1.1.1.6
log
@import emacs-21.3
@
text
@d10 1
a10 1
	-rm -f core *.dvi *.log
d13 1
a13 1
	-rm -f DOC* core *.dvi *.log
d16 2
a17 1
	spook-lines tasks.texi termcap.* ulimit.hack *.tex
@


