unicorn/regress/Makefile

14 lines
140 B
Makefile
Raw Normal View History

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