Mercurial > hg > xemacs-beta
comparison lib-src/Makefile.in.in @ 118:7d55a9ba150c r20-1b11
Import from CVS: tag r20-1b11
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:24:17 +0200 |
parents | 8619ce7e4c50 |
children | cca96a509cfe |
comparison
equal
deleted
inserted
replaced
117:578fd4947a72 | 118:7d55a9ba150c |
---|---|
119 | 119 |
120 EXECUTABLES= ${UTILITIES} ${INSTALLABLES} ${SCRIPTS} ${INSTALLABLE_SCRIPTS} | 120 EXECUTABLES= ${UTILITIES} ${INSTALLABLES} ${SCRIPTS} ${INSTALLABLE_SCRIPTS} |
121 | 121 |
122 SOURCES = COPYING ChangeLog Makefile.in.in README aixcc.lex emacs.csh \ | 122 SOURCES = COPYING ChangeLog Makefile.in.in README aixcc.lex emacs.csh \ |
123 makedoc.com *.[chy] $(SCRIPTS) | 123 makedoc.com *.[chy] $(SCRIPTS) |
124 | |
125 # Additional -D flags for movemail (add to MOVE_FLAGS if desired): | |
126 # MAIL_USE_POP Support mail retrieval from a POP mailbox. | |
127 # MAIL_USE_MMDF Support MMDF mailboxes. | |
128 # MAIL_USE_FLOCK Use flock for file locking (see the comments | |
129 # about locking in movemail.c) | |
130 # MAIL_UNLINK_SPOOL Unlink the user spool mailbox after reading | |
131 # it (instead of just emptying it). | |
132 # KERBEROS Support Kerberized POP. | |
133 # KRB5 Support Kerberos Version 5 pop instead of | |
134 # Version 4 (define this in addition to | |
135 # KERBEROS). | |
136 # HESIOD Support Hesiod lookups of user mailboxes. | |
137 # MAILHOST A string, the host name of the default POP | |
138 # mail host for the site. | |
139 MOVE_FLAGS= | |
140 | |
141 # Additional libraries for movemail: | |
142 # For KERBEROS | |
143 # MOVE_LIBS= -lkrb -ldes -lcom_err | |
144 # For KERBEROS + KRB5 | |
145 # MOVE_LIBS= -lkrb5 -lcrypto -lisode -lcom_err | |
146 # Add "-lhesiod" if HESIOD is defined. | |
147 MOVE_LIBS= | |
124 | 148 |
125 /* ========================== start of cpp stuff ======================= */ | 149 /* ========================== start of cpp stuff ======================= */ |
126 | 150 |
127 /* From here on, comments must be done in C syntax. (see comment above | 151 /* From here on, comments must be done in C syntax. (see comment above |
128 about this.) */ | 152 about this.) */ |
409 $(CC) ${ALL_CFLAGS} ${srcdir}/sorted-doc.c ${ALLOCA} $(LOADLIBES) -o sorted-doc | 433 $(CC) ${ALL_CFLAGS} ${srcdir}/sorted-doc.c ${ALLOCA} $(LOADLIBES) -o sorted-doc |
410 | 434 |
411 b2m: ${srcdir}/b2m.c ../src/config.h | 435 b2m: ${srcdir}/b2m.c ../src/config.h |
412 $(CC) ${ALL_CFLAGS} ${srcdir}/b2m.c $(LOADLIBES) -o b2m | 436 $(CC) ${ALL_CFLAGS} ${srcdir}/b2m.c $(LOADLIBES) -o b2m |
413 | 437 |
414 movemail: ${srcdir}/movemail.c ../src/config.h | 438 movemail: ${srcdir}/movemail.c ${srcdir}/pop.c ${srcdir}/pop.h ../src/config.h |
415 $(CC) ${ALL_CFLAGS} ${srcdir}/movemail.c $(LOADLIBES) -o movemail | 439 $(CC) ${ALL_CFLAGS} ${MOVE_FLAGS} ${srcdir}/movemail.c ${srcdir}/pop.c $(LOADLIBES) ${MOVE_LIBS} -o movemail |
416 | 440 |
417 cvtmail: ${srcdir}/cvtmail.c | 441 cvtmail: ${srcdir}/cvtmail.c |
418 $(CC) ${ALL_CFLAGS} ${srcdir}/cvtmail.c $(LOADLIBES) -o cvtmail | 442 $(CC) ${ALL_CFLAGS} ${srcdir}/cvtmail.c $(LOADLIBES) -o cvtmail |
419 | 443 |
420 fakemail: ${srcdir}/fakemail.c ../src/config.h | 444 fakemail: ${srcdir}/fakemail.c ../src/config.h |