diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 13 |
1 files changed, 8 insertions, 5 deletions
@@ -1,5 +1,5 @@ # -# Copyright (c) 2000-2002 Silicon Graphics, Inc. All Rights Reserved. +# Copyright (c) 2000-2003 Silicon Graphics, Inc. All Rights Reserved. # # This program is free software; you can redistribute it and/or modify it # under the terms of version 2 of the GNU General Public License as @@ -38,13 +38,14 @@ include $(TOPDIR)/include/builddefs endif CONFIGURE = configure include/builddefs include/config.h -LSRCFILES = configure configure.in Makepkgs install-sh README VERSION exports +LSRCFILES = configure configure.in aclocal.m4 Makepkgs install-sh exports \ + README VERSION LDIRT = config.log .dep config.status config.cache confdefs.h conftest* \ Logs/* built .census install.* install-dev.* install-lib.* *.gz SUBDIRS = include libattr attr getfattr setfattr \ - examples test man doc po debian build + examples test m4 man doc po debian build default: $(CONFIGURE) ifeq ($(HAVE_BUILDDEFS), no) @@ -74,6 +75,9 @@ $(CONFIGURE): $$LOCAL_CONFIGURE_OPTIONS touch .census +aclocal.m4:: + aclocal --acdir=$(TOPDIR)/m4 --output=$@ + install: default $(SUBDIRS_MAKERULE) $(INSTALL) -m 755 -d $(PKG_DOC_DIR) @@ -84,5 +88,4 @@ install-dev install-lib: default realclean distclean: clean rm -f $(LDIRT) $(CONFIGURE) - rm -rf autom4te.cache - [ ! -d Logs ] || rmdir Logs + rm -rf autom4te.cache Logs |