From 70f90b142fcb17f673330e79e4690b5550981e31 Mon Sep 17 00:00:00 2001 From: Zigang Xiao Date: Tue, 29 May 2012 15:04:55 -0700 Subject: [PATCH] Update makefiles --- Makefile | 2 +- Makefile.linux | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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