I changed the Makefiles so that I could make run without rebuilding
everything. This is mainly because I often boot the system several times in a row when debugging, and I didn't want to have to build everything just to reboot the system :-)
This commit is contained in:
@@ -4,7 +4,7 @@ all: buildit
|
|||||||
buildit:
|
buildit:
|
||||||
cd build && make all
|
cd build && make all
|
||||||
|
|
||||||
run:
|
run: buildit
|
||||||
cd build && make run
|
cd build && make run
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
|
|||||||
+3
-3
@@ -15,14 +15,14 @@ OTHERSRC=../src/other
|
|||||||
TESTSRC=../src/tests
|
TESTSRC=../src/tests
|
||||||
|
|
||||||
# targets
|
# targets
|
||||||
BINDIR=../bin
|
BINDIR=bin
|
||||||
TESTDIR=../tests
|
TESTDIR=tests
|
||||||
IMAGEFILE=image.fs
|
IMAGEFILE=image.fs
|
||||||
|
|
||||||
all: cmd others a.rim image
|
all: cmd others a.rim image
|
||||||
|
|
||||||
# Manually make all before make run
|
# Manually make all before make run
|
||||||
run: clean all
|
run:
|
||||||
$(PDP7) unixv0.simh
|
$(PDP7) unixv0.simh
|
||||||
|
|
||||||
a.rim:
|
a.rim:
|
||||||
|
|||||||
Reference in New Issue
Block a user