mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 20:18:19 +00:00
11 lines
151 B
Makefile
Executable file
11 lines
151 B
Makefile
Executable file
CFLAGS += -I../include
|
|
LDFLAGS = -L.. -lunicorn
|
|
|
|
TESTS = map_crash sigill sigill2 block_test
|
|
|
|
all: $(TESTS)
|
|
|
|
clean:
|
|
rm -f $(TESTS)
|
|
|
|
.PHONY: all clean
|