Remove wildcard from a.out clean recipe

pull/739/head
Jeffrey Walton 2018-11-12 05:25:01 -05:00
parent a0f3744ed4
commit 886fd7903d
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
1 changed files with 7 additions and 7 deletions

View File

@ -299,7 +299,7 @@ ifeq ($(findstring -DCRYPTOPP_DISABLE_ASM,$(CXXFLAGS)),)
endif
# https://github.com/weidai11/cryptopp/issues/738
UNUSED := $(shell rm -f a.out && rm -rf *.out.dSYM/)
UNUSED := $(shell rm -f a.out && rm -rf a.out.dSYM/)
# CRYPTOPP_DISABLE_ASM
endif
@ -415,7 +415,7 @@ ifeq ($(findstring -DCRYPTOPP_DISABLE_ASM,$(CXXFLAGS)),)
endif
# https://github.com/weidai11/cryptopp/issues/738
UNUSED := $(shell rm -f a.out && rm -rf *.out.dSYM/)
UNUSED := $(shell rm -f a.out && rm -rf a.out.dSYM/)
# CRYPTOPP_DISABLE_ASM
endif
@ -481,7 +481,7 @@ ifeq ($(IS_ARM32)$(IS_NEON),11)
endif
# https://github.com/weidai11/cryptopp/issues/738
UNUSED := $(shell rm -f a.out && rm -rf *.out.dSYM/)
UNUSED := $(shell rm -f a.out && rm -rf a.out.dSYM/)
# IS_NEON
endif
@ -546,7 +546,7 @@ ifeq ($(IS_ARMV8),1)
endif
# https://github.com/weidai11/cryptopp/issues/738
UNUSED := $(shell rm -f a.out && rm -rf *.out.dSYM/)
UNUSED := $(shell rm -f a.out && rm -rf a.out.dSYM/)
# IS_ARMV8
endif
@ -720,7 +720,7 @@ ifeq ($(findstring -DCRYPTOPP_DISABLE_ASM,$(CXXFLAGS)),)
endif
# https://github.com/weidai11/cryptopp/issues/738
UNUSED := $(shell rm -f a.out && rm -rf *.out.dSYM/)
UNUSED := $(shell rm -f a.out && rm -rf a.out.dSYM/)
# CRYPTOPP_DISABLE_ASM
endif
@ -1147,7 +1147,7 @@ clean:
@-$(RM) *.la *.lo *.gcov *.gcno *.gcda *.stackdump core core-*
@-$(RM) a.out /tmp/adhoc.exe
@-$(RM) -r /tmp/cryptopp_test/
@-$(RM) -r *.exe.dSYM/ *.dylib.dSYM/ *.out.dSYM/
@-$(RM) -r *.exe.dSYM/ *.dylib.dSYM/ a.out.dSYM/
@-$(RM) -r cov-int/
# Feature testing runs the compiler and produces an [unwanted] a.out artifact.
@ -1155,7 +1155,7 @@ clean:
# the makefile is run again without privileges. This rule cleans a.out.
.PHONY: aout-clean
aout-clean:
@-$(RM) -r a.out *.out.dSYM/
@-$(RM) -r a.out a.out.dSYM/
.PHONY: autotools-clean
autotools-clean: