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
View File
File diff suppressed because one or more lines are too long
BIN
View File
Binary file not shown.
+9 -1
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)