[ Thread Index |
Date Index
| More lists.liballeg.org/allegro-developers Archives
]
This patch makes `make uninstall' remove the installed allegro.m4 file
on Unix.
Peter
Index: makefile.in
===================================================================
RCS file: /cvsroot/alleg/allegro/makefile.in,v
retrieving revision 1.71
diff -u -r1.71 makefile.in
--- makefile.in 12 Mar 2005 22:18:03 -0000 1.71
+++ makefile.in 13 Mar 2005 07:42:27 -0000
@@ -584,7 +584,7 @@
# -------- rules for uninstalling the files --------
-uninstall: uninstall-lib uninstall-modules uninstall-headers uninstall-programs uninstall-info uninstall-man
+uninstall: uninstall-lib uninstall-modules uninstall-headers uninstall-programs uninstall-info uninstall-man uninstall-misc
@echo
@echo "All gone. Don't you feel sad now?"
@echo
@@ -657,6 +657,9 @@
sed -n -e "s,^@@\(struct\|typedef\).*@\([a-zA-Z0-9_]*\),$(mandir)/man3/\2.3,p" $(srcdir)/docs/src/allegro._tx \
| xargs -n 1 rm -f
+uninstall-misc:
+ rm -f $(prefix)/share/aclocal/allegro.m4
+
# -------- generate automatic dependencies --------