#16 Fixed makefile clean rule and added xm6.h to disk.h so that all Disk functions are included for non-bm build

This commit is contained in:
akuker
2020-08-09 14:03:42 -05:00
parent 1a64c9b5de
commit 794d2629bc
2 changed files with 2 additions and 1 deletions

View File

@@ -125,7 +125,7 @@ $(SCSIMON): $(OBJ_SCSIMON) $(BINDIR)
$(CXX) $(CXXFLAGS) -o $@ $(OBJ_SCSIMON) -lpthread
clean:
rm -f $(OBJDIR) $(BINDIR)
rm -rf $(OBJDIR) $(BINDIR)
run:
sudo ./$(RASCSI) -ID1 /home/pi/HARDDISK2.hda -ID6 /home/pi/marathon.iso

View File

@@ -17,6 +17,7 @@
#pragma once
#include "xm6.h"
#include "log.h"
#include "scsi.h"
#include "filepath.h"