Mercurial > hg > xemacs-beta
comparison modules/sample/internal/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 | 308d34e9f07d |
comparison
equal
deleted
inserted
replaced
1489:52dd7cedee30 | 1490:74b2ea269eb5 |
---|---|
31 MODTITLE="Sample module for XEmacs" | 31 MODTITLE="Sample module for XEmacs" |
32 LDFLAGS=@LDFLAGS@ @sample_libs@ | 32 LDFLAGS=@LDFLAGS@ @sample_libs@ |
33 SRCS=sample.c | 33 SRCS=sample.c |
34 | 34 |
35 ### You should not need to modify anything below this line | 35 ### You should not need to modify anything below this line |
36 SRC_SRCS=$(SRCS:%=$(srcdir)/%) | |
37 OBJS=$(SRCS:.c=.o) | |
38 | |
39 SHELL=/bin/sh | 36 SHELL=/bin/sh |
40 RM=rm -f | 37 RM=rm -f |
41 PROGNAME=@PROGNAME@ | 38 PROGNAME=@PROGNAME@ |
42 CFLAGS=@CFLAGS@ | 39 CFLAGS=@CFLAGS@ |
43 INSTALL=@INSTALL@ | 40 INSTALL=@INSTALL@ |
50 moduledir=@moduledir@ | 47 moduledir=@moduledir@ |
51 with_modules=@with_modules@ | 48 with_modules=@with_modules@ |
52 | 49 |
53 srcdir=@srcdir@ | 50 srcdir=@srcdir@ |
54 VPATH=@srcdir@ | 51 VPATH=@srcdir@ |
52 | |
53 SRC_SRCS=$(SRCS:%=$(srcdir)/%) | |
54 OBJS=$(SRCS:.c=.o) | |
55 | 55 |
56 CC=@MOD_CC@ | 56 CC=@MOD_CC@ |
57 MODARCHDIR=@MODARCHDIR@ | 57 MODARCHDIR=@MODARCHDIR@ |
58 MAKE_DOCFILE=@MAKE_DOCFILE@ | 58 MAKE_DOCFILE=@MAKE_DOCFILE@ |
59 MODCFLAGS=@MODCFLAGS@ | 59 MODCFLAGS=@MODCFLAGS@ |