1
0
mirror of https://github.com/livingcomputermuseum/cpus-pdp8.git synced 2026-02-26 08:54:41 +00:00
This commit is contained in:
brad
2010-04-02 12:52:11 +00:00
parent b99c533aac
commit cbf9536299
4 changed files with 16 additions and 5 deletions

View File

@@ -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

View File

@@ -1,3 +1,8 @@
all: macro8x
macro8x: macro8x.c
cc -o macro8x macro8x.c
clean:
rm -f macro8x

View File

@@ -1,7 +1,9 @@
#
all: maker
maker: maker.c
cc -o maker maker.c
clean:
rm -rf maker

View File

@@ -4,3 +4,6 @@ all: showbin
showbin: showbin.c
cc -o showbin showbin.c
clean:
rm -f showbin