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++
|
||||
CC = gcc
|
||||
XXD := $(shell command -v xxd)
|
||||
|
||||
STORE = build/$(TYPE)
|
||||
SOURCE := $(foreach DIR,$(DIRS),$(wildcard $(DIR)/*.cpp))
|
||||
|
@ -166,6 +167,9 @@ endif
|
|||
ifndef PKG_LIBS
|
||||
$(error Missing dependencies)
|
||||
endif
|
||||
ifndef XXD
|
||||
$(error Command xxd not found)
|
||||
endif
|
||||
|
||||
-include $(DFILES)
|
||||
-include $(CDFILES)
|
||||
|
|
Loading…
Reference in a new issue