mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2025-01-12 08:29:50 +00:00
First stab at GB -> linux
Signed-off-by: Adrian.Conlon <adrian.conlon@gmail.com>
This commit is contained in:
parent
04b6835cf4
commit
794d0fa361
36
LR35902/src/Makefile
Normal file
36
LR35902/src/Makefile
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
LIB = liblr35902.a
|
||||||
|
|
||||||
|
CXXFLAGS = -Wall -std=c++11 -pipe -I ../inc -I ../../inc
|
||||||
|
|
||||||
|
CXXFILES = Disassembler.cpp Display.cpp GameBoyBus.cpp LR35902.cpp Profiler.cpp
|
||||||
|
|
||||||
|
CXXOBJECTS = $(CXXFILES:.cpp=.o)
|
||||||
|
|
||||||
|
SOURCES = $(CXXFILES)
|
||||||
|
OBJECTS = $(CXXOBJECTS)
|
||||||
|
|
||||||
|
PCH = stdafx.h.gch
|
||||||
|
|
||||||
|
all: opt
|
||||||
|
|
||||||
|
opt: CXXFLAGS += -DNDEBUG -march=native -O2
|
||||||
|
opt: $(LIB)
|
||||||
|
|
||||||
|
debug: CXXFLAGS += -g -D_DEBUG
|
||||||
|
debug: $(LIB)
|
||||||
|
|
||||||
|
coverage: CXXFLAGS += -g -D_DEBUG -fprofile-arcs -ftest-coverage
|
||||||
|
coverage: $(LIB)
|
||||||
|
|
||||||
|
$(PCH): stdafx.h
|
||||||
|
$(CXX) $(CXXFLAGS) -x c++-header $<
|
||||||
|
|
||||||
|
$(LIB): $(OBJECTS)
|
||||||
|
$(AR) $(ARFLAGS) $(LIB) $(OBJECTS)
|
||||||
|
|
||||||
|
%.o: %.cpp $(PCH)
|
||||||
|
$(CXX) $(CXXFLAGS) $< -c -o $@
|
||||||
|
|
||||||
|
.PHONY: clean
|
||||||
|
clean:
|
||||||
|
-rm -f $(LIB) $(OBJECTS) $(PCH)
|
Loading…
x
Reference in New Issue
Block a user