Tweaked rules for "make convert" to pick up additional exec files
parent
b5aa6b3a92
commit
28dc376596
|
|
@ -12,8 +12,9 @@ CXXFLAGS ?= -DNDEBUG -g2 -O2
|
||||||
# LDFLAGS += -Wl,--gc-sections
|
# LDFLAGS += -Wl,--gc-sections
|
||||||
|
|
||||||
AR ?= ar
|
AR ?= ar
|
||||||
ARFLAGS ?= -cr # ar needs the dash on OpenBSD
|
ARFLAGS ?= -cr # ar needs the dash on OpenBSD
|
||||||
RANLIB ?= ranlib
|
RANLIB ?= ranlib
|
||||||
|
|
||||||
CP ?= cp
|
CP ?= cp
|
||||||
CHMOD ?= chmod
|
CHMOD ?= chmod
|
||||||
MKDIR ?= mkdir
|
MKDIR ?= mkdir
|
||||||
|
|
@ -296,7 +297,7 @@ asan ubsan align aligned: libcryptopp.a cryptest.exe
|
||||||
test check: cryptest.exe
|
test check: cryptest.exe
|
||||||
./cryptest.exe v
|
./cryptest.exe v
|
||||||
|
|
||||||
# Used to generate list of source files for Autotools 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 fipstest.cpp $(TESTSRCS),$(SRCS)))
|
$(info Library sources: $(filter-out fipstest.cpp $(TESTSRCS),$(SRCS)))
|
||||||
|
|
@ -413,7 +414,7 @@ dlltest.exe: cryptopp.dll $(DLLTESTOBJS)
|
||||||
|
|
||||||
# This recipe prepares the distro files
|
# This recipe prepares the distro files
|
||||||
TEXT_FILES := *.h *.cpp adhoc.cpp.proto License.txt Readme.txt Install.txt Filelist.txt config.recommend Doxyfile cryptest* cryptlib* dlltest* cryptdll* *.sln *.vcproj *.dsw *.dsp cryptopp.rc TestVectors/*.txt TestData/*.dat
|
TEXT_FILES := *.h *.cpp adhoc.cpp.proto License.txt Readme.txt Install.txt Filelist.txt config.recommend Doxyfile cryptest* cryptlib* dlltest* cryptdll* *.sln *.vcproj *.dsw *.dsp cryptopp.rc TestVectors/*.txt TestData/*.dat
|
||||||
EXEC_FILES := GNUmakefile GNUmakefile-cross cryptest.sh rdrand-nasm.sh TestData/ TestVectors/
|
EXEC_FILES := GNUmakefile GNUmakefile-cross TestData/ TestVectors/
|
||||||
|
|
||||||
ifeq ($(wildcard Filelist.txt),Filelist.txt)
|
ifeq ($(wildcard Filelist.txt),Filelist.txt)
|
||||||
DIST_FILES := $(shell cat Filelist.txt)
|
DIST_FILES := $(shell cat Filelist.txt)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue