]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - src/repl/Makefile.am
Source Format Enforcement (#532)
[thirdparty/squid.git] / src / repl / Makefile.am
index 1799a0663e02b1e3d5b24dca20fd41f4c0e58c43..db988dfe4ee545fedc37a0d2952df37c26b75ff5 100644 (file)
@@ -1,30 +1,31 @@
-#  Makefile for storage modules in the Squid Object Cache server
-#
-#  $Id$
-#
+## Copyright (C) 1996-2020 The Squid Software Foundation and contributors
+##
+## Squid software is distributed under GPLv2+ license and includes
+## contributions from numerous individuals and organizations.
+## Please see the COPYING and CONTRIBUTORS files for details.
+##
 
 include $(top_srcdir)/src/Common.am
 
 ## we need our local files too (but avoid -I. at all costs)
-INCLUDES += -I$(srcdir)
+AM_CPPFLAGS += -I$(srcdir)
 
-AUTOMAKE_OPTIONS = subdir-objects
-
-# No recursion is needed for the subdirs, we build from here. // @REPL_POLICIES@
+# No recursion is needed for the subdirs, we build from here.
 
 EXTRA_LIBRARIES = liblru.a libheap.a
-noinst_LIBRARIES = @REPL_LIBS@
+noinst_LIBRARIES = $(REPL_LIBS)
 
 liblru_a_SOURCES = lru/store_repl_lru.cc
 libheap_a_SOURCES = heap/store_heap_replacement.h heap/store_heap_replacement.cc heap/store_repl_heap.cc
 
+
 ## Until such time as we have a makefile in src/repl/heap etc.
-check_PROGRAMS += testHeaders
+TESTS += testHeaders
 
 ## Special Universal .h dependency test script
 ## aborts if error encountered
-testHeaders: $(top_srcdir)/src/repl/heap/*.h
-       $(SHELL) $(top_srcdir)/test-suite/testheaders.sh "$(CXXCOMPILE)" "heap" || exit 1
+testHeaders: $(srcdir)/heap/*.h
+       $(SHELL) $(top_srcdir)/test-suite/testheaders.sh "$(CXXCOMPILE)" $^ || exit 1
 ## ./ has no .h files.
 ## ./lru/ has no .h files.