1
0
mirror of https://github.com/livingcomputermuseum/cpus-pdp8.git synced 2026-05-04 23:26:46 +00:00
This commit is contained in:
brad
2010-06-05 17:09:48 +00:00
parent 57bff22430
commit 6ef3fdd93b
3 changed files with 83 additions and 1 deletions

View File

@@ -1,3 +1,18 @@
#
all:
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 *~