unicorn/regress/Makefile

12 lines
151 B
Makefile
Raw Normal View History

CFLAGS += -I../include
LDFLAGS = -L.. -lunicorn
2015-08-24 11:00:54 +00:00
2015-08-25 01:36:58 +00:00
TESTS = map_crash sigill sigill2 block_test
2015-08-24 11:00:54 +00:00
all: $(TESTS)
clean:
rm -f $(TESTS)
.PHONY: all clean