mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 06:58:24 +00:00
60d0004329
http://stackoverflow.com/questions/1580596/how-do-i-make-git-ignore-file-mode-chmod-changes
11 lines
151 B
Makefile
11 lines
151 B
Makefile
CFLAGS += -I../include
|
|
LDFLAGS = -L.. -lunicorn
|
|
|
|
TESTS = map_crash sigill sigill2 block_test
|
|
|
|
all: $(TESTS)
|
|
|
|
clean:
|
|
rm -f $(TESTS)
|
|
|
|
.PHONY: all clean
|