mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-04-17 17:41:52 +00:00
12 lines
128 B
Makefile
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
|