unicorn/regress/Makefile

12 lines
151 B
Makefile
Raw Normal View History

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