aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPaul Oliver <contact@pauloliver.dev>2024-02-29 19:04:34 +0100
committerPaul Oliver <contact@pauloliver.dev>2024-02-29 19:16:14 +0100
commite6ab4a8ed100d5d5b7611c74cf3ccd556f1f1d71 (patch)
tree129cf13c2f9b3eae54402300db4570815789a02a /Makefile
Initial commitHEADmaster
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile24
1 files changed, 24 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..5b6acff
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,24 @@
+LIBRARY := lib/libHyperNeat.a
+SOURCES := $(wildcard src/*.cpp) $(wildcard src/Utils/*.cpp)
+OBJECTS := $(patsubst src/%.cpp,obj/%.o,$(SOURCES))
+DEPS := $(patsubst %.o,%.d,$(OBJECTS))
+CFLAGS := -c -O3 -Wall -std=c++11 -MMD -Iinclude -IC:/cereal/include
+LFLAGS := rvs
+
+all: $(OBJECTS)
+ ar $(LFLAGS) $(LIBRARY) $(OBJECTS)
+ make -C plugins/CppnExplorer
+
+-include $(DEPS)
+
+$(OBJECTS): $(patsubst obj/%.o,src/%.cpp,$@)
+ g++ $(CFLAGS) $(patsubst obj/%.o,src/%.cpp,$@) -o $@
+
+rebuild: clean all
+
+clean:
+ del lib\*.a
+ del obj\*.o
+ del obj\*.d
+ del obj\Utils\*.o
+ del obj\Utils\*.d