mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 06:28:12 +00:00
11 lines
132 B
Makefile
11 lines
132 B
Makefile
CFLAGS += -I../include
|
|
LDFLAGS = -L.. -lunicorn
|
|
|
|
TESTS = map_crash sigill
|
|
|
|
all: $(TESTS)
|
|
|
|
clean:
|
|
rm -f $(TESTS)
|
|
|
|
.PHONY: all clean
|