diff --git a/Makefile b/Makefile index 25ccd74..04656ae 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ CPP = llvm-g++ # Make window binary -SRC=main.cpp +SRC=main.cpp cell.cpp HDR=$(SRC:.cpp=.h) OBJ=$(SRC:.cpp=.o) BIN=window diff --git a/Makefile.linux b/Makefile.linux index bda0351..eff5651 100644 --- a/Makefile.linux +++ b/Makefile.linux @@ -5,9 +5,9 @@ CC = ${PREFIX}/bin/gcc CPP = ${PREFIX}/bin/g++ # Make window exe -SRC=main.cpp MyBuilder.cpp +SRC=main.cpp MyBuilder.cpp MyCell.cpp # MyParser.cpp HDR=$(SRC:.cpp=.h) -OBJ=$(SRC:.cpp=.o) +OBJ=$(SRC:.cpp=.o) BIN=window # Make creator example