Mercurial > hg > xemacs-beta
annotate modules/zlib/Makefile @ 5096:e0587c615e8b
Updates to internals.texi
-------------------- ChangeLog entries follow: --------------------
man/ChangeLog addition:
2010-03-04 Ben Wing <ben@xemacs.org>
* internals/internals.texi (Top):
* internals/internals.texi (list-to-texinfo): Removed.
* internals/internals.texi (convert-list-to-texinfo): New.
* internals/internals.texi (table-to-texinfo): Removed.
* internals/internals.texi (convert-table-to-texinfo): New.
Update Lisp functions at top to newest versions.
* internals/internals.texi (A History of Emacs):
* internals/internals.texi (Through Version 18):
* internals/internals.texi (Lucid Emacs):
* internals/internals.texi (XEmacs):
* internals/internals.texi (The XEmacs Split):
* internals/internals.texi (Modules for Other Aspects of the Lisp Interpreter and Object System):
* internals/internals.texi (Introduction to Writing C Code):
* internals/internals.texi (Writing Good Comments):
* internals/internals.texi (Writing Macros):
* internals/internals.texi (Major Textual Changes):
* internals/internals.texi (Great Integral Type Renaming):
* internals/internals.texi (How to Regression-Test):
* internals/internals.texi (Creating a Branch):
* internals/internals.texi (Dynamic Arrays):
* internals/internals.texi (Allocation by Blocks):
* internals/internals.texi (mark_object):
* internals/internals.texi (gc_sweep):
* internals/internals.texi (Byte-Char Position Conversion):
* internals/internals.texi (Searching and Matching):
* internals/internals.texi (Introduction to Multilingual Issues #3):
* internals/internals.texi (Byte Types):
* internals/internals.texi (Different Ways of Seeing Internal Text):
* internals/internals.texi (Buffer Positions):
* internals/internals.texi (Basic internal-format APIs):
* internals/internals.texi (The DFC API):
* internals/internals.texi (General Guidelines for Writing Mule-Aware Code):
* internals/internals.texi (Mule-izing Code):
* internals/internals.texi (Locales):
* internals/internals.texi (More about code pages):
* internals/internals.texi (More about locales):
* internals/internals.texi (Unicode support under Windows):
* internals/internals.texi (The Frame):
* internals/internals.texi (The Non-Client Area):
* internals/internals.texi (The Client Area):
* internals/internals.texi (The Paned Area):
* internals/internals.texi (Text Areas):
* internals/internals.texi (The Displayable Area):
* internals/internals.texi (Event Queues):
* internals/internals.texi (Event Stream Callback Routines):
* internals/internals.texi (Focus Handling):
* internals/internals.texi (Future Work -- Autodetection):
Replace " with ``, '' (not complete, maybe about halfway through).
author | Ben Wing <ben@xemacs.org> |
---|---|
date | Thu, 04 Mar 2010 07:19:03 -0600 |
parents | abe6d1db359e |
children | b44930391f7d |
rev | line source |
---|---|
428 | 1 # |
2 # Sample makefile for a simple Emacs module. | |
3 # This is slightly more complicated than would normally be the case, | |
4 # as this makefile has been tailored to work in the Emacs source tree. | |
5 # For samples of how to compile modules outside of the source tree | |
6 # (as would be the case if a user had downloaded a module and wanted | |
7 # to compile it for use within Emacs), see the samples in the sub-directory | |
8 # 'installed'. | |
9 # | |
10 | |
442 | 11 SHELL=/bin/sh |
12 RM=rm -f | |
428 | 13 CC=../../lib-src/ellcc |
14 CFLAGS=-I. -I../../src | |
15 LD=$(CC) --mode=link | |
16 MKINIT=$(CC) --mode=init | |
17 | |
18 SRCS=zlib.c | |
19 OBJS=$(SRCS:.c=.o) | |
20 | |
21 .c.o: | |
22 $(CC) $(CFLAGS) -c $< | |
23 | |
24 MODNAME=zlib | |
25 MODVER=1.0.4 | |
26 MODTITLE="ZLIB compression library interface" | |
27 | |
28 all: $(MODNAME).ell | |
29 | |
30 distclean: clean | |
31 | |
32 clean: | |
442 | 33 $(RM) $(MODNAME).ell $(OBJS) zlib_i.o zlib_i.c |
428 | 34 |
35 $(MODNAME).ell: $(OBJS) zlib_i.o | |
36 $(LD) --mod-output=$@ $(OBJS) zlib_i.o | |
37 | |
38 zlib_i.o: zlib_i.c | |
39 zlib_i.c: $(SRCS) | |
40 ELLMAKEDOC=../../lib-src/make-docfile $(MKINIT) --mod-output=$@ \ | |
41 --mod-name=$(MODNAME) --mod-version=$(MODVER) \ | |
42 --mod-title=$(MODTITLE) $(SRCS) | |
43 |