1
0
mirror of https://github.com/DoctorWkt/pdp7-unix.git synced 2026-04-27 20:48:00 +00:00

added copybinaries so that we can distributed binaries via github

This commit is contained in:
Tom Everett
2016-03-20 12:46:55 -06:00
parent b99155a4b7
commit 5335bbd195
3 changed files with 10 additions and 1 deletions

1
binaries/a.rim Normal file

File diff suppressed because one or more lines are too long

BIN
binaries/image.fs Normal file

Binary file not shown.

View File

@@ -18,8 +18,10 @@ TESTSRC=../src/tests
BINDIR=bin
TESTDIR=tests
IMAGEFILE=image.fs
BINARIES=../binaries/
all: cmd others a.rim image
all: cmd others a.rim image copybinaries
# Manually make all before make run
run:
@@ -37,10 +39,16 @@ image:
$(MKFS) --format simh proto
$(FSCK) $(IMAGEFILE)
copybinaries:
mkdir -p $(BINARIES)
cp $(IMAGEFILE) $(BINARIES)
cp a.rim $(BINARIES)
clean:
rm -f a.rim $(IMAGEFILE) a.lst n.out
rm -rf $(BINDIR)
rm -rf $(TESTDIR)
rm -rf $(BINARIES)
dirs:
mkdir -p $(BINDIR)