mirror of
https://github.com/livingcomputermuseum/cpus-pdp8.git
synced 2026-02-26 08:54:41 +00:00
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
|
||||
all: showbin
|
||||
SUBDIRS = macro showbin maker
|
||||
|
||||
all clean:
|
||||
for d in $(SUBDIRS); do $(MAKE) -C $$d $@; done
|
||||
|
||||
showbin: showbin.c
|
||||
cc -o showbin showbin.c
|
||||
|
||||
|
||||
@@ -1,3 +1,8 @@
|
||||
|
||||
all: macro8x
|
||||
|
||||
macro8x: macro8x.c
|
||||
cc -o macro8x macro8x.c
|
||||
|
||||
clean:
|
||||
rm -f macro8x
|
||||
|
||||
@@ -1,7 +1,9 @@
|
||||
|
||||
#
|
||||
|
||||
all: maker
|
||||
|
||||
maker: maker.c
|
||||
cc -o maker maker.c
|
||||
|
||||
|
||||
clean:
|
||||
rm -rf maker
|
||||
|
||||
@@ -4,3 +4,6 @@ all: showbin
|
||||
showbin: showbin.c
|
||||
cc -o showbin showbin.c
|
||||
|
||||
clean:
|
||||
rm -f showbin
|
||||
|
||||
|
||||
Reference in New Issue
Block a user