Base: Tweak CXXFLAGS for the "little" test projects

Let's build with -std=c++2a since we're C++20 nowadays. :^)
This commit is contained in:
Andreas Kling 2020-11-05 10:02:57 +01:00
commit eed78ffa5a
Notes: sideshowbarker 2024-07-19 01:32:58 +09:00

View file

@ -1,6 +1,6 @@
PROGRAM = little
OBJS = main.o other.o
CXXFLAGS = -g
CXXFLAGS = -g -Os -std=c++2a
all: $(PROGRAM)