Mercurial > hg > xemacs-beta
comparison modules/sample/external/Makefile.in.in @ 1490:74b2ea269eb5
[xemacs-hg @ 2003-05-20 15:00:22 by james]
Andrew Begel's change to move use of srcdir below its definition.
author | james |
---|---|
date | Tue, 20 May 2003 15:00:28 +0000 |
parents | 52dd7cedee30 |
children | dce479915b74 |
comparison
equal
deleted
inserted
replaced
1489:52dd7cedee30 | 1490:74b2ea269eb5 |
---|---|
8 MODVER=0.0.1 | 8 MODVER=0.0.1 |
9 MODTITLE="Sample module for XEmacs" | 9 MODTITLE="Sample module for XEmacs" |
10 SRCS=sample.c | 10 SRCS=sample.c |
11 | 11 |
12 ### You should not need to modify anything below this line | 12 ### You should not need to modify anything below this line |
13 SRC_SRCS=$(SRCS:%=$(srcdir)/%) | |
14 OBJS=$(SRCS:.c=.o) | |
15 | |
16 SHELL=/bin/sh | 13 SHELL=/bin/sh |
17 RM=rm -f | 14 RM=rm -f |
18 CFLAGS=@CFLAGS@ | 15 CFLAGS=@CFLAGS@ |
19 LDFLAGS=@LDFLAGS@ | 16 LDFLAGS=@LDFLAGS@ |
20 | 17 |
21 srcdir=@srcdir@ | 18 srcdir=@srcdir@ |
22 VPATH=@srcdir@ | 19 VPATH=@srcdir@ |
20 | |
21 SRC_SRCS=$(SRCS:%=$(srcdir)/%) | |
22 OBJS=$(SRCS:.c=.o) | |
23 | 23 |
24 ELLCC=@ELLCC@ | 24 ELLCC=@ELLCC@ |
25 MODARCHDIR=$(shell @ELLCC@ --mod-archdir) | 25 MODARCHDIR=$(shell @ELLCC@ --mod-archdir) |
26 INSTALLPATH=$(shell @ELLCC@ --mod-site-location) | 26 INSTALLPATH=$(shell @ELLCC@ --mod-site-location) |
27 INSTALL=@INSTALL@ | 27 INSTALL=@INSTALL@ |