Mercurial > hg > xemacs-beta
view etc/tests/external-widget/Makefile @ 4596:4fc32a3a086e
Fix a couple of bugs, #'query-coding-region, #'query-coding-string.
2009-02-04 Aidan Kehoe <kehoea@parhasard.net>
* coding.el (query-coding-region):
Revert this to being a defun, add a compiler macro without
needless binding.
(query-coding-string):
Correct a bug here, string indices are zero- not one-based.
* mule/general-late.el (unicode-query-coding-skip-chars-arg):
Correct the algorithm used to initialise this variable.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Wed, 04 Feb 2009 12:14:38 +0000 |
parents | ac2d302a0011 |
children | 4b173ad71786 03ab78e48ef6 |
line wrap: on
line source
CFLAGS += -Xc -g -DTOOLTALK EMACSHOME = ../../.. EMACSLIBDIR = $(EMACSHOME)/editor/src EMACSINCLUDEDIR = $(EMACSHOME)/editor/src MOTIFHOME = /opt/SUNWmotif CPPFLAGS += -I$(OPENWINHOME)/include LDFLAGS += -L$(OPENWINHOME)/lib -R$(OPENWINHOME)/lib CPPFLAGS += -I$(MOTIFHOME)/include LDFLAGS += -L$(MOTIFHOME)/lib -R$(MOTIFHOME)/lib CPPFLAGS += -I$(EMACSINCLUDEDIR) LDFLAGS += -L$(EMACSLIBDIR) LDFLAGS += -R$(OPENWINHOME)/lib:$(EMACSLIBDIR) -g TM_OBJS = test-ew-motif.o TXL_OBJS = test-ew-xlib.o MOTIF_LIBS = -Bstatic -lextcli_Xm -Bdynamic -lXm -lXt -ltt -lX11 -lgen -lm XLIB_LIBS = -Bstatic -lextcli_Xlib -Bdynamic -ltt -lX11 -lgen -lm all: test-ew-motif test-ew-motif: $(TM_OBJS) $(CC) -o $@ $(LDFLAGS) $(TM_OBJS) $(MOTIF_LIBS) test-ew-xlib: $(TXL_OBJS) $(CC) -o $@ $(LDFLAGS) $(TXL_OBJS) $(XLIB_LIBS)