mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-01-12 21:05:43 +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
|