diff options
author | Matthieu Herrb <matthieu.herrb@laas.fr> | 2005-07-23 16:12:58 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu.herrb@laas.fr> | 2005-07-23 16:12:58 +0000 |
commit | aebfa8db8c0069d4474841414012b7f19ec14d53 (patch) | |
tree | 6943ed47bbc719165a704da08ec9990947fa17cd /Makefile.am | |
parent | d9d6a51c74d055e93b2fb8450ef9de162e35945f (diff) |
Fix DEP_* reference
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index a52c22b..38c6e96 100644 --- a/Makefile.am +++ b/Makefile.am @@ -37,7 +37,7 @@ libmp_a_SOURCES = \ # liblisp.a # -liblisp_a_CFLAGS = -I$(top_srcdir)/lisp/re -I$(top_srcdir)/lisp/mp -DLISP -DLISPDIR=\"$(libdir)/X11/xedit/lisp\" +liblisp_a_CFLAGS = -I$(top_srcdir)/lisp/re -I$(top_srcdir)/lisp/mp -DLISP -DLISPDIR=\"$(libdir)/X11/xedit/lisp\" $(XEDIT_CFLAGS) liblisp_a_LIBADD = libmp.a liblisp_a_SOURCES = \ lisp/bytecode.c \ @@ -144,7 +144,9 @@ Xedit.ad: cp $(top_srcdir)/Xedit-noxprint.ad Xedit.ad endif -$(APPDEFAULTFILES): %: %.ad +SUFFIXES = .ad + +.ad: cp $< $@ appdefault_DATA = $(APPDEFAULTFILES) |