summaryrefslogtreecommitdiff
path: root/ext/opcache/jit/Makefile.frag.w32
blob: ed2b4ad4fec8997b5ec439dab227043a432ca66c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
$(BUILD_DIR)\\minilua.exe: ext\opcache\jit\dynasm\minilua.c
	@if exist $(BUILD_DIR)\\minilua.exe del $(BUILD_DIR)\\minilua.exe
	$(PHP_CL) /Fo$(BUILD_DIR)\ /Fd$(BUILD_DIR)\ /Fp$(BUILD_DIR)\ /FR$(BUILD_DIR) /Fe$(BUILD_DIR)\minilua.exe ext\opcache\jit\dynasm\minilua.c

ext\opcache\jit\zend_jit_x86.c: ext\opcache\jit\zend_jit_x86.dasc $(BUILD_DIR)\\minilua.exe
	@if exist ext\opcache\jit\zend_jit_x86.c del ext\opcache\jit\zend_jit_x86.c
	$(BUILD_DIR)\\minilua.exe ext/opcache/jit/dynasm/dynasm.lua $(DASM_FLAGS) -o $@ ext/opcache/jit/zend_jit_x86.dasc

$(BUILD_DIR)\ext\opcache\jit\zend_jit.obj: \
	ext/opcache/jit/zend_jit_x86.c \
	ext/opcache/jit/zend_jit_helpers.c \
	ext/opcache/jit/zend_jit_disasm.c \
	ext/opcache/jit/zend_jit_gdb.c \
	ext/opcache/jit/zend_jit_perf_dump.c \
	ext/opcache/jit/zend_jit_oprofile.c \
	ext/opcache/jit/zend_jit_trace.c \
	ext/opcache/jit/zend_jit_vtune.c