mirror of
https://git.wownero.com/wownero/wownero-puddle.git
synced 2024-08-15 01:03:20 +00:00
add xxd check
This commit is contained in:
parent
e8383c73e6
commit
c2eb64b67f
1 changed files with 4 additions and 0 deletions
4
Makefile
4
Makefile
|
@ -87,6 +87,7 @@ EXTRA_FILES = Makefile
|
||||||
|
|
||||||
C++ = g++
|
C++ = g++
|
||||||
CC = gcc
|
CC = gcc
|
||||||
|
XXD := $(shell command -v xxd)
|
||||||
|
|
||||||
STORE = build/$(TYPE)
|
STORE = build/$(TYPE)
|
||||||
SOURCE := $(foreach DIR,$(DIRS),$(wildcard $(DIR)/*.cpp))
|
SOURCE := $(foreach DIR,$(DIRS),$(wildcard $(DIR)/*.cpp))
|
||||||
|
@ -166,6 +167,9 @@ endif
|
||||||
ifndef PKG_LIBS
|
ifndef PKG_LIBS
|
||||||
$(error Missing dependencies)
|
$(error Missing dependencies)
|
||||||
endif
|
endif
|
||||||
|
ifndef XXD
|
||||||
|
$(error Command xxd not found)
|
||||||
|
endif
|
||||||
|
|
||||||
-include $(DFILES)
|
-include $(DFILES)
|
||||||
-include $(CDFILES)
|
-include $(CDFILES)
|
||||||
|
|
Loading…
Reference in a new issue