mirror of
https://github.com/livingcomputermuseum/cpus-pdp8.git
synced 2026-01-20 10:05:02 +00:00
19 lines
269 B
Makefile
19 lines
269 B
Makefile
#
|
|
|
|
PALD = ../../utils/macro/macro8x
|
|
SHOWBIN = ../../utils/showbin/showbin
|
|
|
|
all: user.bin uart.bin
|
|
|
|
user.bin: user.pal
|
|
$(PALD) $<
|
|
$(SHOWBIN) $@ >$(basename $<).mem
|
|
|
|
uart.bin: uart.pal
|
|
$(PALD) $<
|
|
$(SHOWBIN) $@ >$(basename $<).mem
|
|
|
|
clean:
|
|
rm -f *.mem *.bin *.lst *~
|
|
|