I'm seeing
subdir/.dirstamp
subdir/*.o
left in each subdir that has objects built in it after make distclean
when subdirobjects is in use (CVS HEAD, not updated for a few days now).
(where subdir is a particular dir). (I'm working on make distcheck
again, the pass seems to have been a lucky chance :[).
Is this a known bug? Am I doing something wrong?
===
# Makefile for storage modules in the Squid Object Cache server
#
# $Id: Makefile.am,v 1.1.2.1 2001/04/06 12:40:29 rbcollins Exp $
#
AUTOMAKE_OPTIONS = subdir-objects
DIST_SUBDIRS = aufs coss diskd null ufs
SUBDIRS = @STORE_MODULES@
##OUTLIBS = @STORE_LIBS@
EXTRA_LIBRARIES = libaufs.a libcoss.a libdiskd.a libnull.a libufs.a
noinst_LIBRARIES = @STORE_LIBS@
libaufs_a_SOURCES = aufs/aiops.c aufs/async_io.c aufs/store_asyncufs.h \
aufs/store_dir_aufs.c aufs/store_io_aufs.c
libcoss_a_SOURCES = coss/store_coss.h coss/store_io_coss.c
coss/store_dir_coss
.c
libdiskd_a_SOURCES = diskd/diskd.c diskd/store_dir_diskd.c
diskd/store_diskd.h \
diskd/store_io_diskd.c
libnull_a_SOURCES = null/store_null.c
libufs_a_SOURCES = ufs/store_dir_ufs.c ufs/store_io_ufs.c
ufs/store_ufs.h
INCLUDES = -I. -I$(top_builddir)/include -I$(top_srcdir)/include \
-I$(top_srcdir)/src/