mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2024-12-23 18:45:27 +00:00
12 lines
151 B
Makefile
Executable file
12 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
|