Mercurial > hg > xemacs-beta
annotate etc/tests/external-widget/Makefile @ 2522:52dc9b940348
[xemacs-hg @ 2005-01-28 00:12:32 by ben]
cc-mode patch from Shyamal Prasad
xemacs/programs.texi: Updated it to reflect
current status of programming modes.
xemacs/programs.texi: New section introduces CC
Mode. Introduces customization with reference to CC Mode
manual. Also introduce C/AWK modes in prog-modes package
xemacs/programs.texi: Removed - it was
obsolete. prog-modes package documentation now contains
indentation description for old C mode
xemacs/major.texi: Add description of major mode
hooks. Cleaned up and updated programming mode descriptions.
xemacs/xemacs.texi: Updated Detailed Node listing for new
CC Mode section in programs.texi
author | ben |
---|---|
date | Fri, 28 Jan 2005 00:12:39 +0000 |
parents | ac2d302a0011 |
children | 4b173ad71786 03ab78e48ef6 |
rev | line source |
---|---|
2 | 1 CFLAGS += -Xc -g -DTOOLTALK |
2 EMACSHOME = ../../.. | |
3 EMACSLIBDIR = $(EMACSHOME)/editor/src | |
4 EMACSINCLUDEDIR = $(EMACSHOME)/editor/src | |
5 MOTIFHOME = /opt/SUNWmotif | |
6 | |
7 CPPFLAGS += -I$(OPENWINHOME)/include | |
8 LDFLAGS += -L$(OPENWINHOME)/lib -R$(OPENWINHOME)/lib | |
9 | |
10 CPPFLAGS += -I$(MOTIFHOME)/include | |
11 LDFLAGS += -L$(MOTIFHOME)/lib -R$(MOTIFHOME)/lib | |
12 | |
13 CPPFLAGS += -I$(EMACSINCLUDEDIR) | |
14 LDFLAGS += -L$(EMACSLIBDIR) | |
15 | |
16 LDFLAGS += -R$(OPENWINHOME)/lib:$(EMACSLIBDIR) -g | |
17 | |
18 TM_OBJS = test-ew-motif.o | |
19 TXL_OBJS = test-ew-xlib.o | |
20 MOTIF_LIBS = -Bstatic -lextcli_Xm -Bdynamic -lXm -lXt -ltt -lX11 -lgen -lm | |
21 XLIB_LIBS = -Bstatic -lextcli_Xlib -Bdynamic -ltt -lX11 -lgen -lm | |
22 | |
23 all: test-ew-motif | |
24 | |
25 test-ew-motif: $(TM_OBJS) | |
26 $(CC) -o $@ $(LDFLAGS) $(TM_OBJS) $(MOTIF_LIBS) | |
27 | |
28 test-ew-xlib: $(TXL_OBJS) | |
29 $(CC) -o $@ $(LDFLAGS) $(TXL_OBJS) $(XLIB_LIBS) | |
30 |