From e50a40ec59abb84d02c173ff31bdaf60a33cf94c Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Wed, 25 Jul 2018 00:11:09 -0400 Subject: [PATCH] Fix 'make sources' recipe --- GNUmakefile | 4 ++-- GNUmakefile-cross | 12 ++++++++---- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index cf5fc572..3bd2fd86 100755 --- a/GNUmakefile +++ b/GNUmakefile @@ -840,8 +840,8 @@ sources: adhoc.cpp $(info ***** Test sources *****) $(info $(TESTSRCS)) $(info ) - $(info ***** Test sources *****) - $(info $(TESTSRCS)) + $(info ***** Test headers *****) + $(info $(TESTINCL)) # Directory we want (can't specify on Doygen command line) DOCUMENT_DIRECTORY := ref$(LIB_VER) diff --git a/GNUmakefile-cross b/GNUmakefile-cross index 2128c9a0..8a5fc360 100755 --- a/GNUmakefile-cross +++ b/GNUmakefile-cross @@ -481,13 +481,17 @@ cryptest.exe: libcryptopp.a $(TESTOBJS) # Used to generate list of source files for Autotools, CMakeList and Android.mk .PHONY: sources sources: - $(info Library sources: $(filter-out $(TESTSRCS),$(SRCS))) + $(info ***** Library sources *****) + $(info $(filter-out $(TESTSRCS),$(SRCS))) $(info ) - $(info Library headers: $(filter-out $(TESTINCL),$(INCL))) + $(info ***** Library headers *****) + $(info $(filter-out $(TESTINCL),$(INCL))) $(info ) - $(info Test sources: $(TESTSRCS)) + $(info ***** Test sources *****) + $(info $(TESTSRCS)) $(info ) - $(info Test headers: $(TESTINCL)) + $(info ***** Test headers *****) + $(info $(TESTINCL)) adhoc.cpp: adhoc.cpp.proto ifeq ($(wildcard adhoc.cpp),)