mirror of
https://github.com/rzzzwilson/pymlac.git
synced 2025-06-10 09:32:41 +00:00
17 lines
301 B
Makefile
17 lines
301 B
Makefile
#
|
|
# Special Makefile to refresh the good_*.trace file contents
|
|
# when we make a change to the format, etc.
|
|
#
|
|
|
|
TESTS = $(shell ls test_*.asm|sed -e "s/\.asm//")
|
|
|
|
test: $(TESTS)
|
|
|
|
%: %.ptp
|
|
./pymlac -b ptr -ptr $< -r 040 -t 0100 -r 0100
|
|
mv pymlac.trace good_$*.trace
|
|
|
|
%.ptp: %.asm
|
|
./iasm -l $*.lst $<
|
|
|