Skip to content

Commit

Permalink
Merge pull request #7 from CU-Production/main
Browse files Browse the repository at this point in the history
Damn it, Steve Jobs (use .dylib, not .lib. why isn't it just .so? why can't apple just be normal?
  • Loading branch information
ColleagueRiley authored Jan 15, 2024
2 parents 2a97c61 + 83dcd62 commit 7622918
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ endif
ifeq ($(detected_OS),Darwin) # Mac OS X
LIBS := -I./ext/Silicon/ -lm -framework Foundation -framework AppKit -framework OpenGL -framework CoreVideo -w $(STATIC)
EXT =
LIB_EXT = .lib
LIB_EXT = .dylib
endif
ifeq ($(detected_OS),Linux)
LIBS := -I./include -lX11 -lm -lGL $(STATIC)
Expand Down Expand Up @@ -69,4 +69,4 @@ libRGFW$(LIB_EXT):

libRGFW.a:
make RGFW.o
ar rcs libRGFW.a *.o
ar rcs libRGFW.a *.o

0 comments on commit 7622918

Please sign in to comment.