mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-04 03:11:28 +00:00
264f95a40e
- Honor CFLAGS everywhere - Use ut?? instead of uint??_t * Add build instructions in doc/iphone * Fix some out-of-range conditionals
11 lines
183 B
Makefile
11 lines
183 B
Makefile
NAME=r_hash
|
|
# HACK
|
|
ifneq ($(OSTYPE),darwin)
|
|
LDFLAGS+=-lm
|
|
LINK=-lm
|
|
endif
|
|
|
|
OBJ=state.o md4.o md5c.o crc16.o crc32.o sha1.o hash.o hamdist.o entropy.o sha2.o calc.o
|
|
|
|
include ../rules.mk
|