From 56718c47a875c67c7093542f86c86bb833867cfe Mon Sep 17 00:00:00 2001 From: Jeffrey Crowell Date: Mon, 20 Jun 2022 15:20:10 -0400 Subject: [PATCH] builds with clang --- soh/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/soh/Makefile b/soh/Makefile index d29e2f990..f8269a766 100644 --- a/soh/Makefile +++ b/soh/Makefile @@ -102,7 +102,7 @@ LDLIBS := \ bz2 \ z \ pthread \ - atomic \ + storm \ ultraship \ ) @@ -119,7 +119,7 @@ endif ifeq ($(UNAME), Darwin) #APPLE LDLIBS += \ - $(addprefix -framework, \ + $(addprefix -framework , \ OpenGL \ ) \ $(shell sdl2-config --libs) $(shell pkg-config --libs glew) @@ -211,7 +211,7 @@ build/%.o: %.c $(TARGET): $(LIBULTRASHIP) $(TARGET): $(O_FILES) - $(CXX) $^ -o $@ $(LDFLAGS) -fuse-ld=$(LD) $(LDDIRS) $(LDLIBS) + $(CXX) $^ -o $@ $(LDFLAGS) $(LDDIRS) $(LDLIBS) -include $(D_FILES)