Line 124... |
Line 124... |
DIST_COMMON = Makefile.am Makefile.in
|
DIST_COMMON = Makefile.am Makefile.in
|
|
|
|
|
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
|
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
|
|
|
TAR = gtar
|
TAR = tar
|
GZIP_ENV = --best
|
GZIP_ENV = --best
|
DEP_FILES = .deps/dcache_model.P .deps/icache_model.P
|
DEP_FILES = .deps/dcache_model.P .deps/icache_model.P
|
SOURCES = $(libcache_a_SOURCES)
|
SOURCES = $(libcache_a_SOURCES)
|
OBJECTS = $(libcache_a_OBJECTS)
|
OBJECTS = $(libcache_a_OBJECTS)
|
|
|
all: all-redirect
|
all: all-redirect
|
.SUFFIXES:
|
.SUFFIXES:
|
.SUFFIXES: .S .c .o .s
|
.SUFFIXES: .S .c .o .s
|
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
cd $(top_srcdir) && $(AUTOMAKE) --foreign cache/Makefile
|
cd $(top_srcdir) && $(AUTOMAKE) --gnu cache/Makefile
|
|
|
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
|
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
|
cd $(top_builddir) \
|
cd $(top_builddir) \
|
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
|
|
Line 209... |
Line 209... |
distdir: $(DISTFILES)
|
distdir: $(DISTFILES)
|
here=`cd $(top_builddir) && pwd`; \
|
here=`cd $(top_builddir) && pwd`; \
|
top_distdir=`cd $(top_distdir) && pwd`; \
|
top_distdir=`cd $(top_distdir) && pwd`; \
|
distdir=`cd $(distdir) && pwd`; \
|
distdir=`cd $(distdir) && pwd`; \
|
cd $(top_srcdir) \
|
cd $(top_srcdir) \
|
&& $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --foreign cache/Makefile
|
&& $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu cache/Makefile
|
@for file in $(DISTFILES); do \
|
@for file in $(DISTFILES); do \
|
d=$(srcdir); \
|
d=$(srcdir); \
|
if test -d $$d/$$file; then \
|
if test -d $$d/$$file; then \
|
cp -pr $$/$$file $(distdir)/$$file; \
|
cp -pr $$/$$file $(distdir)/$$file; \
|
else \
|
else \
|