Fixed typos in comments
parent
f90a940e2e
commit
ed6c1de915
|
|
@ -234,8 +234,9 @@ endif # CXXFLAGS
|
||||||
endif # USING_GLIBCXX
|
endif # USING_GLIBCXX
|
||||||
endif # GNU Debug build
|
endif # GNU Debug build
|
||||||
|
|
||||||
# List cryptlib.cpp first and cpu.o second in an attempt to tame C++ static initialization problems. The issue
|
# List cryptlib.cpp first and cpu.cpp second in an attempt to tame C++ static initialization problems.
|
||||||
# spills into POD data types, so cpu.cpp is the second candidate for explicit initialization order.
|
# The issue spills into POD data types of cpu.cpp due to the storage class of the bools, so cpu.cpp
|
||||||
|
# is the second candidate for explicit initialization order.
|
||||||
SRCS := cryptlib.cpp cpu.cpp $(filter-out cryptlib.cpp cpu.cpp pch.cpp simple.cpp winpipes.cpp cryptlib_bds.cpp,$(wildcard *.cpp))
|
SRCS := cryptlib.cpp cpu.cpp $(filter-out cryptlib.cpp cpu.cpp pch.cpp simple.cpp winpipes.cpp cryptlib_bds.cpp,$(wildcard *.cpp))
|
||||||
|
|
||||||
# No need for CPU or RDRAND on non-X86 systems. X32 is represented with X64.
|
# No need for CPU or RDRAND on non-X86 systems. X32 is represented with X64.
|
||||||
|
|
@ -300,7 +301,7 @@ DOCUMENT_DIRECTORY := ref$(LIB_VER)
|
||||||
ifeq ($(wildcard Doxyfile),Doxyfile)
|
ifeq ($(wildcard Doxyfile),Doxyfile)
|
||||||
DOXYGEN_DIRECTORY := $(strip $(shell $(EGREP) "OUTPUT_DIRECTORY" Doxyfile | grep -v "\#" | cut -d "=" -f 2))
|
DOXYGEN_DIRECTORY := $(strip $(shell $(EGREP) "OUTPUT_DIRECTORY" Doxyfile | grep -v "\#" | cut -d "=" -f 2))
|
||||||
endif
|
endif
|
||||||
# Default directory (missing in config file)
|
# Default directory (in case its missing in the config file)
|
||||||
ifeq ($(strip $(DOXYGEN_DIRECTORY)),)
|
ifeq ($(strip $(DOXYGEN_DIRECTORY)),)
|
||||||
DOXYGEN_DIRECTORY := html-docs
|
DOXYGEN_DIRECTORY := html-docs
|
||||||
endif
|
endif
|
||||||
|
|
@ -330,7 +331,7 @@ endif
|
||||||
|
|
||||||
.PHONY: distclean
|
.PHONY: distclean
|
||||||
distclean: clean
|
distclean: clean
|
||||||
-$(RM) adhoc.cpp adhoc.cpp.copied GNUmakefile.deps benchmarks.html cryptest.txt cryptest-*.txt *.o *.ii *.s
|
-$(RM) adhoc.cpp adhoc.cpp.copied GNUmakefile.deps benchmarks.html cryptest.txt cryptest-*.txt *.o *.ii *.s *~
|
||||||
ifneq ($(wildcard cryptopp$(LIB_VER)\.*),)
|
ifneq ($(wildcard cryptopp$(LIB_VER)\.*),)
|
||||||
-$(RM) cryptopp$(LIB_VER)\.*
|
-$(RM) cryptopp$(LIB_VER)\.*
|
||||||
endif
|
endif
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue