radare2/libr/hash/Makefile

16 lines
261 B
Makefile
Raw Normal View History

include ../config.mk
NAME=r_hash
# HACK
ifneq ($(OSTYPE),darwin)
2013-06-05 21:58:31 +00:00
ifneq ($(OSTYPE),haiku)
LDFLAGS+=-lm
LINK=-lm
endif
2013-06-05 21:58:31 +00:00
endif
2013-07-15 00:51:55 +00:00
OBJS=state.o md5c.o crc16.o crc32.o sha1.o hash.o md4.o
OBJS+=hamdist.o entropy.o sha2.o calc.o xxhash.o adler32.o
include ../rules.mk