X-Git-Url: https://jxself.org/git/?p=open-adventure.git;a=blobdiff_plain;f=Makefile;h=546ba819ee95d4568049aaf732ec6651d7d082f9;hp=8836d1ac0874891555bae267907dfa6b418cc1fa;hb=e7dc3eab5d7eb798199e59081e846582af7205a7;hpb=5cdaa301dcf6ececc1d2a9e340d8da698a9f55d8 diff --git a/Makefile b/Makefile index 8836d1a..546ba81 100644 --- a/Makefile +++ b/Makefile @@ -12,6 +12,12 @@ CCFLAGS+=-std=c99 -D_DEFAULT_SOURCE -DVERSION=\"$(VERS)\" -O2 -D_FORTIFY_SOURCE= LIBS=$(shell pkg-config --libs libedit) INC+=$(shell pkg-config --cflags libedit) +# LLVM/Clang on macOS seems to need -ledit flag for linking +UNAME_S := $(shell uname -s) +ifeq ($(UNAME_S),Darwin) + LIBS += -ledit +endif + OBJS=main.o init.o actions.o score.o misc.o saveresume.o CHEAT_OBJS=cheat.o init.o actions.o score.o misc.o saveresume.o SOURCES=$(OBJS:.o=.c) advent.h adventure.yaml Makefile control make_dungeon.py templates/*.tpl