Fix 'make sources' recipe
parent
4aafb0e6a3
commit
e50a40ec59
|
|
@ -840,8 +840,8 @@ sources: adhoc.cpp
|
||||||
$(info ***** Test sources *****)
|
$(info ***** Test sources *****)
|
||||||
$(info $(TESTSRCS))
|
$(info $(TESTSRCS))
|
||||||
$(info )
|
$(info )
|
||||||
$(info ***** Test sources *****)
|
$(info ***** Test headers *****)
|
||||||
$(info $(TESTSRCS))
|
$(info $(TESTINCL))
|
||||||
|
|
||||||
# Directory we want (can't specify on Doygen command line)
|
# Directory we want (can't specify on Doygen command line)
|
||||||
DOCUMENT_DIRECTORY := ref$(LIB_VER)
|
DOCUMENT_DIRECTORY := ref$(LIB_VER)
|
||||||
|
|
|
||||||
|
|
@ -481,13 +481,17 @@ cryptest.exe: libcryptopp.a $(TESTOBJS)
|
||||||
# Used to generate list of source files for Autotools, CMakeList and Android.mk
|
# Used to generate list of source files for Autotools, CMakeList and Android.mk
|
||||||
.PHONY: sources
|
.PHONY: sources
|
||||||
sources:
|
sources:
|
||||||
$(info Library sources: $(filter-out $(TESTSRCS),$(SRCS)))
|
$(info ***** Library sources *****)
|
||||||
|
$(info $(filter-out $(TESTSRCS),$(SRCS)))
|
||||||
$(info )
|
$(info )
|
||||||
$(info Library headers: $(filter-out $(TESTINCL),$(INCL)))
|
$(info ***** Library headers *****)
|
||||||
|
$(info $(filter-out $(TESTINCL),$(INCL)))
|
||||||
$(info )
|
$(info )
|
||||||
$(info Test sources: $(TESTSRCS))
|
$(info ***** Test sources *****)
|
||||||
|
$(info $(TESTSRCS))
|
||||||
$(info )
|
$(info )
|
||||||
$(info Test headers: $(TESTINCL))
|
$(info ***** Test headers *****)
|
||||||
|
$(info $(TESTINCL))
|
||||||
|
|
||||||
adhoc.cpp: adhoc.cpp.proto
|
adhoc.cpp: adhoc.cpp.proto
|
||||||
ifeq ($(wildcard adhoc.cpp),)
|
ifeq ($(wildcard adhoc.cpp),)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue