mirror of
https://github.com/aap/pdp6.git
synced 2026-01-11 23:53:31 +00:00
18 lines
370 B
Makefile
18 lines
370 B
Makefile
sysgen.rim: sysgen.rel sysgen.lst
|
|
ld6 -o sysgen.rim sysgen.rel
|
|
|
|
test.rim: main.rel tty.rel pt.rel dt.rel
|
|
ld6 -o test.rim main.rel tty.rel pt.rel dt.rel
|
|
|
|
test.sav: main.rel tty.rel pt.rel dt.rel
|
|
ld6 -f sav -o test.sav main.rel tty.rel pt.rel dt.rel
|
|
|
|
dtboot.rim: dtboot.rel
|
|
ld6 -o dtboot.rim dtboot.rel
|
|
|
|
%.rel: %.s
|
|
as6 -o $@ $<
|
|
|
|
%.lst: %.s
|
|
as6 -o /dev/null -l $@ $<
|