mirror of
https://github.com/irmen/prog8.git
synced 2024-12-27 05:29:38 +00:00
9 lines
244 B
Makefile
9 lines
244 B
Makefile
all: perfecthash.c opcodes.asm
|
|
|
|
perfecthash.c: gen_opcodes.py
|
|
python gen_opcodes.py --mnemlist | gperf --no-strlen --null-strings -7 -C -D -E -m 100 > perfecthash.c
|
|
|
|
opcodes.asm: gen_opcodes.py
|
|
python gen_opcodes.py --parser > opcodes.asm
|
|
|