mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-01-11 10:15:36 +00:00
14 lines
140 B
Makefile
14 lines
140 B
Makefile
.PHONY: all clean
|
|
|
|
CFLAGS+=-I../include
|
|
LDFLAGS=-L.. -lunicorn
|
|
|
|
TESTS = map_crash
|
|
|
|
all: $(TESTS)
|
|
|
|
clean:
|
|
rm -f $(TESTS)
|
|
|
|
.PHONY: all clean
|