mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 17:48:16 +00:00
bc08bfda67
- in appveyor, install clang and cmake in cygwin, enable package upgrades, and build cmocka and enable testing for gcc only - in `gitignore`, ignore generated cmocka folder - in travis, use brew in osx to install cmocka, and enable testing for gcc and clang on os x and linux - in `Makefile`, change to use `uname -s` to determine os type - make `install-cmocka-linux.sh`, a simple shell script to download and install cmocka on linux - in `bindings/Makefile`, enable `make -c` to call subdirectory makefiles instead of `cd [dir] && make` and include environment variables for runtime access to generated libraries - in `samples/Makefile`, change to use `uname -s` to determine os type, remove `clean_bins` from `all` command, and include `Werror` for compile strictness - in `tests/unit/Makefile`, add `cflags` for compile time access to cmocka headers and library, include execute vars for runtime access to cmocka and unicorn libs - in `tests/unit/test_tb_x86.c`, comment out assert that would not compile
68 lines
1.9 KiB
Makefile
68 lines
1.9 KiB
Makefile
# Unicorn Engine
|
|
# By Nguyen Anh Quynh & Dang Hoang Vu, 2015
|
|
TMP_DIR = /tmp/unicorn_sample
|
|
|
|
DIFF = diff -u -w
|
|
|
|
SAMPLE_ARM = $(TMP_DIR)/sample_arm
|
|
SAMPLE_ARM64 = $(TMP_DIR)/sample_arm64
|
|
SAMPLE_MIPS = $(TMP_DIR)/sample_mips
|
|
SAMPLE_M68K = $(TMP_DIR)/sample_m68k
|
|
SAMPLE_SPARC = $(TMP_DIR)/sample_sparc
|
|
SAMPLE_X86 = $(TMP_DIR)/sample_x86
|
|
|
|
ENV_VARS = LD_LIBRARY_PATH=../ DYLD_LIBRARY_PATH=../
|
|
|
|
.PHONY: build install samples sample_python expected python sample_diff clean check
|
|
|
|
build:
|
|
$(MAKE) -C python gen_const
|
|
$(MAKE) -C go gen_const
|
|
$(MAKE) -C java gen_const
|
|
python const_generator.py dotnet
|
|
|
|
install: build
|
|
$(MAKE) -C python install
|
|
$(MAKE) -C java install
|
|
|
|
samples: expected python
|
|
|
|
sample_python: expected python
|
|
|
|
expected:
|
|
$(MAKE) -C ../samples
|
|
mkdir -p $(TMP_DIR)
|
|
$(ENV_VARS) ../samples/sample_arm > $(SAMPLE_ARM)_e
|
|
$(ENV_VARS) ../samples/sample_arm64 > $(SAMPLE_ARM64)_e
|
|
$(ENV_VARS) ../samples/sample_mips > $(SAMPLE_MIPS)_e
|
|
$(ENV_VARS) ../samples/sample_sparc > $(SAMPLE_SPARC)_e
|
|
$(ENV_VARS) ../samples/sample_m68k > $(SAMPLE_M68K)_e
|
|
$(ENV_VARS) ../samples/sample_x86 > $(SAMPLE_X86)_e
|
|
|
|
python: FORCE
|
|
$(MAKE) -C python
|
|
$(ENV_VARS) python python/sample_arm.py > $(SAMPLE_ARM)_o
|
|
$(ENV_VARS) python python/sample_arm64.py > $(SAMPLE_ARM64)_o
|
|
$(ENV_VARS) python python/sample_mips.py > $(SAMPLE_MIPS)_o
|
|
$(ENV_VARS) python python/sample_sparc.py > $(SAMPLE_SPARC)_o
|
|
$(ENV_VARS) python python/sample_m68k.py > $(SAMPLE_M68K)_o
|
|
$(ENV_VARS) python python/sample_x86.py > $(SAMPLE_X86)_o
|
|
$(MAKE) sample_diff
|
|
|
|
sample_diff: FORCE
|
|
$(DIFF) $(SAMPLE_ARM)_e $(SAMPLE_ARM)_o
|
|
$(DIFF) $(SAMPLE_ARM64)_e $(SAMPLE_ARM64)_o
|
|
$(DIFF) $(SAMPLE_MIPS)_e $(SAMPLE_MIPS)_o
|
|
$(DIFF) $(SAMPLE_SPARC)_e $(SAMPLE_SPARC)_o
|
|
$(DIFF) $(SAMPLE_M68K)_e $(SAMPLE_M68K)_o
|
|
$(DIFF) $(SAMPLE_X86)_e $(SAMPLE_X86)_o
|
|
|
|
clean:
|
|
rm -rf $(TMP_DIR)
|
|
$(MAKE) -C python clean
|
|
$(MAKE) -C java clean
|
|
|
|
check:
|
|
make -C python check
|
|
|
|
FORCE:
|