Prechádzať zdrojové kódy

Modernize makefile

More generic makefile.
DricomDragon 4 rokov pred
rodič
commit
2b08b1798b
2 zmenil súbory, kde vykonal 25 pridanie a 25 odobranie
  1. 0 25
      Editor/Makefile
  2. 25 0
      Editor/makefile

+ 0 - 25
Editor/Makefile

@@ -1,25 +0,0 @@
-# Flags:
-#  -g    adds debugging information to the executable file
-#  -Wall turns on most, but not all, compiler warnings
-FLAGS = -g -Wall -std=c++11
-
-# Libraries :
-# Box2D -Wl,-rpath=/usr/local/lib/
-# SDL
-# SDL_gfx
-# SDL_image
-LIBS = -l SDL -l SDL_gfx 
-
-# Name of output:
-NAME = Exec
-
-# Names of cpp files:
-FILES = main.cpp SnapFile.cpp edit.cpp
-
-default: build
-
-build: $(FILES)
-	g++ $(FLAGS) $(FILES) $(LIBS) -o $(NAME)
-
-clean:
-	$(RM) $(NAME)

+ 25 - 0
Editor/makefile

@@ -0,0 +1,25 @@
+CXX=g++
+CXXFLAGS=-std=c++11
+LDFLAGS=-l SDL -l SDL_gfx
+INC=
+LIB=
+
+EXEC=BouncyDriverEditor
+SRC=$(shell find . -name '*.cpp') 
+OBJ=$(SRC:.cpp=.o)
+
+$(EXEC): $(OBJ)
+	@mkdir -p bin
+	$(CXX) -o bin/$@ $^ $(LDFLAGS) $(LIB)
+
+%.o : %.cpp 
+	$(CXX) -o $@ -c $< $(CXXFLAGS) $(INC)
+	
+clean:
+	rm -rf $(OBJ)
+
+distclean: clean
+	rm -rf ./bin
+
+exec: $(EXEC)
+	./bin/$(EXEC)