unicorn/regress/Makefile
2015-08-24 13:02:01 +02:00

12 lines
128 B
Makefile

CFLAGS+=-I../include
LDFLAGS=-L.. -lunicorn
TESTS=map_crash map_regs
all: $(TESTS)
clean:
rm -f $(TESTS)
.PHONY: all clean