comparison modules/common/Makefile.common @ 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 c92a9d5f2e67
comparison
equal deleted inserted replaced
1489:52dd7cedee30 1490:74b2ea269eb5
25 ## source tree, and to support both module and non-module building inside the 25 ## source tree, and to support both module and non-module building inside the
26 ## source tree. 26 ## source tree.
27 27
28 ## Note: This will be appended to the individual module Makefiles by configure. 28 ## Note: This will be appended to the individual module Makefiles by configure.
29 29
30 SRC_SRCS:=$(SRCS:%=$(srcdir)/%)
31 OBJS=$(SRCS:.c=.o)
32
33 SHELL=/bin/sh 30 SHELL=/bin/sh
34 RM=rm -f 31 RM=rm -f
35 PROGNAME=@PROGNAME@ 32 PROGNAME=@PROGNAME@
36 CFLAGS=@CFLAGS@ 33 CFLAGS=@CFLAGS@
37 INSTALL=@INSTALL@ 34 INSTALL=@INSTALL@
44 moduledir=@moduledir@ 41 moduledir=@moduledir@
45 with_modules=@with_modules@ 42 with_modules=@with_modules@
46 43
47 srcdir=@srcdir@ 44 srcdir=@srcdir@
48 VPATH=@srcdir@ 45 VPATH=@srcdir@
46
47 SRC_SRCS:=$(SRCS:%=$(srcdir)/%)
48 OBJS=$(SRCS:.c=.o)
49 49
50 MODCC=@MOD_CC@ 50 MODCC=@MOD_CC@
51 MODARCHDIR=@MODARCHDIR@ 51 MODARCHDIR=@MODARCHDIR@
52 MAKE_DOCFILE=@MAKE_DOCFILE@ 52 MAKE_DOCFILE=@MAKE_DOCFILE@
53 MODCFLAGS=@MODCFLAGS@ 53 MODCFLAGS=@MODCFLAGS@