prog8/examples/cx16/assembler/Makefile

9 lines
244 B
Makefile
Raw Normal View History

2021-01-05 21:56:52 +00:00
all: perfecthash.c opcodes.asm
perfecthash.c: gen_opcodes.py
2021-01-05 23:23:54 +00:00
python gen_opcodes.py --mnemlist | gperf --no-strlen --null-strings -7 -C -D -E -m 100 > perfecthash.c
2021-01-05 21:56:52 +00:00
opcodes.asm: gen_opcodes.py
python gen_opcodes.py --parser > opcodes.asm