From c55bba5d2b994c7d6f9a29a263d090a6feb21943 Mon Sep 17 00:00:00 2001 From: "Adrian.Conlon" Date: Sun, 3 Sep 2017 12:40:11 +0100 Subject: [PATCH] Correct a couple of Makefile issues. Signed-off-by: Adrian.Conlon --- Intel8080/src/Makefile | 6 +++--- src/Makefile | 2 ++ 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Intel8080/src/Makefile b/Intel8080/src/Makefile index 6cb4942..e772d16 100644 --- a/Intel8080/src/Makefile +++ b/Intel8080/src/Makefile @@ -1,8 +1,8 @@ -LIB = libEightBit.a +LIB = libintel8080.a -CXXFLAGS = -Wall -std=c++11 -pipe -I ../inc +CXXFLAGS = -Wall -std=c++11 -pipe -I ../inc -I ../../inc -CXXFILES = EventArgs.cpp InputOutput.cpp IntelProcessor.cpp Memory.cpp Processor.cpp +CXXFILES = Disassembler.cpp Intel8080.cpp Profiler.cpp CXXOBJECTS = $(CXXFILES:.cpp=.o) diff --git a/src/Makefile b/src/Makefile index 592ebf2..bf000e2 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,3 +1,5 @@ +LIB = libeightbit.a + CXXFLAGS = -Wall -std=c++11 -pipe -I ../inc CXXFILES = EventArgs.cpp InputOutput.cpp IntelProcessor.cpp Memory.cpp Processor.cpp