Browse Source

Build word stack challenge

Tip : you can trick the game ... ;-)
DricomDragon 4 years ago
parent
commit
27708035f0
2 changed files with 26 additions and 0 deletions
  1. 1 0
      wordStackChallenge/.gitignore
  2. 25 0
      wordStackChallenge/makefile

+ 1 - 0
wordStackChallenge/.gitignore

@@ -0,0 +1 @@
+bin/

+ 25 - 0
wordStackChallenge/makefile

@@ -0,0 +1,25 @@
+CXX=g++
+CXXFLAGS=
+LDFLAGS=
+INC=
+LIB=
+
+EXEC=NetAppClient
+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)