mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-13 01:21:38 -07:00
63331ef731
This reverts commita40a53b104, reversing changes made to5422a3b17e.
14 lines
244 B
Makefile
14 lines
244 B
Makefile
ODIN=../../odin
|
|
ODINFLAGS=
|
|
|
|
OS=$(shell uname)
|
|
|
|
ifeq ($(OS), OpenBSD)
|
|
ODINFLAGS:=$(ODINFLAGS) -extra-linker-flags:-L/usr/local/lib
|
|
endif
|
|
|
|
all: botan_test
|
|
|
|
botan_test:
|
|
$(ODIN) run botan -out=botan_hash -o:speed -no-bounds-check $(ODINFLAGS)
|