Fix 'make sources' recipe

pull/696/head
Jeffrey Walton 2018-07-25 00:11:09 -04:00
parent 4aafb0e6a3
commit e50a40ec59
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
2 changed files with 10 additions and 6 deletions

View File

@ -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)

View File

@ -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),)