diff options
author | Roland Reichwein <mail@reichwein.it> | 2024-05-01 17:25:11 +0200 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2024-05-01 17:25:11 +0200 |
commit | aed6caab9ce43a830c45da08f0380760a2ae4aec (patch) | |
tree | a5662fb61996067fec3f6c9e8375245891b75018 /Makefile | |
parent | 9149c5fcd7dbb4417f089a4e225dd1463a86cc00 (diff) |
Skip actions for up-to-date targets
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -7,6 +7,7 @@ OBJ=$(SRC:.cpp=.o) all: $(PROJECTNAME) LDLIBS += -lfmt +CXXFLAGS += -std=c++17 $(PROJECTNAME): $(OBJ) $(CXX) $(LDFLAGS) $^ $(LDLIBS) $(LIBS) -o $@ |