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 | ba4c273726718bbb6e7aabb9607f08cf1ac0faeb (patch) | |
tree | 9347f3d2bef62f84531358daaac0e808ec7b5abe | |
parent | 3482953f137322896027b1bfa3dae09064270ff0 (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-- | man/Makefile.am | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/man/Makefile.am b/man/Makefile.am index a124291..6bc4194 100644 --- a/man/Makefile.am +++ b/man/Makefile.am @@ -43,9 +43,9 @@ EXTRA_DIST = $(libman_SOURCES) CLEANFILES = $(libman_DATA) # Generate man page shadow files (Replaces InstallManPageAliases from Imake) -BUILT_SOURCES = .shadows.DONE +BUILT_SOURCES = shadows.DONE -.shadows.DONE: +shadows.DONE: -rm -f $(all_aliases:=.$(LIB_MAN_SUFFIX)) (for i in $(XShape_man_aliases:=.$(LIB_MAN_SUFFIX)) ; do \ echo .so man$(LIB_MAN_SUFFIX)/XShape.$(LIB_MAN_SUFFIX) > $$i; \ @@ -56,9 +56,9 @@ BUILT_SOURCES = .shadows.DONE (for i in $(Xevi_man_aliases:=.$(LIB_MAN_SUFFIX)) ; do \ echo .so man$(LIB_MAN_SUFFIX)/Xevi.$(LIB_MAN_SUFFIX) > $$i; \ done) - touch .shadows.DONE + touch shadows.DONE -CLEANFILES += .shadows.DONE +CLEANFILES += shadows.DONE # Rules for generating files using the C pre-processor # (Replaces CppFileTarget from Imake) |