From 9a3c815b176598ed463a88f42dc6a5f8c6457d50 Mon Sep 17 00:00:00 2001 From: San Jacobs Date: Thu, 4 Aug 2022 12:18:33 +0200 Subject: Move to C++17 I don't like this, but I wanted more stuff. --- makefile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'makefile') diff --git a/makefile b/makefile index e6d7637..a217299 100644 --- a/makefile +++ b/makefile @@ -1,7 +1,10 @@ -# INCLUDE is where you find the headerfiles for the libs you're using. They are used during compilation. +# INCLUDE is where you find the header files for the libs you're using. They are used during compilation. # Example: -I /usr/include/boost/ INCLUDE= +# Enabling C++17 mode so I can have more stuff +CFLAGS=-std=c++17 + # LIBDIR is where you can find the linkable objects or whatever. They are used for the linking stage. LIBDIR=-L /usr/lib/x86_64-linux-gnu/ @@ -16,11 +19,11 @@ OBJECTS=$(patsubst src/%.cpp, $(OBJDIR)%.o, $(SOURCES)) # This last line creates an identical list of objects based on the list of .cpp files. a.out: $(OBJECTS) - g++ $(LIBDIR) $(LIBS) $(OBJECTS) + g++ $(LIBDIR) $(CFLAGS) $(LIBS) $(OBJECTS) $(OBJECTS): obj/%.o : src/%.cpp mkdir -p obj - g++ -g $(INCLUDE) -c $< -o $@ + g++ -g $(INCLUDE) $(CFLAGS) -c $< -o $@ clean: rm obj/*.o -- cgit v1.2.1