diff options
author | Roland Reichwein <mail@reichwein.it> | 2024-05-01 15:51:40 +0200 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2024-05-01 15:51:40 +0200 |
commit | 8c344cf8fabded65cee42c69f63d2e47b9bef8d3 (patch) | |
tree | c15f1323df43782d8c410939d234be4f5a449285 /Makefile | |
parent | 16cf84958d059b7500f43dd1ba53e1ed680529a2 (diff) |
First build possible
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -6,6 +6,8 @@ OBJ=$(SRC:.cpp=.o) all: $(PROJECTNAME) +LDLIBS += -lfmt + $(PROJECTNAME): $(OBJ) $(CXX) $(LDFLAGS) $^ $(LDLIBS) $(LIBS) -o $@ |