diff options
author | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-10-17 21:13:15 +0000 |
---|---|---|
committer | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-10-17 21:13:15 +0000 |
commit | ce3af1f6d302e3b7adaba7e166f6f594aa13c310 (patch) | |
tree | 44849395fd0b65ed034c63dcf0df7ad797427e35 | |
parent | 86f92c112c22604824d2044b566b8cbee81cb397 (diff) |
Rename .shadows.DONE to shadows.DONE to avoid some make's thinking it's a
suffix rule (reported by Matthieu Herrb)
-rw-r--r-- | Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 6e3c372..d4eb5bb 100644 --- a/Makefile.am +++ b/Makefile.am @@ -31,7 +31,7 @@ pkgconfig_DATA = xau.pc libmandir = $(mandir)/man$(LIB_MAN_SUFFIX) libman_SOURCES = Xau.man -BUILT_SOURCES = .shadows.DONE +BUILT_SOURCES = shadows.DONE CLEANFILES = $(libman_DATA) libman_DATA = $(libman_SOURCES:man=$(LIB_MAN_SUFFIX)) \ $(Xau_shadows:=.$(LIB_MAN_SUFFIX)) @@ -48,7 +48,7 @@ Xau_shadows = \ XauGetAuthByAddr \ XauGetBestAuthByAddr -.shadows.DONE: +shadows.DONE: -rm -f $(Xau_shadows:=.$(LIB_MAN_SUFFIX)) (for i in $(Xau_shadows:=.$(LIB_MAN_SUFFIX)) ; do \ echo .so man$(LIB_MAN_SUFFIX)/Xau.$(LIB_MAN_SUFFIX) > $$i; \ |