Fix MacOS build

I use MacPorts and need to tell the build to look in /opt/local/
This commit is contained in:
Mark Felder 2020-09-10 15:53:11 -05:00
parent 51ecea6458
commit a6ae315621
1 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
CFLAGS = -std=c99 -g -Wall -Werror
CPPFLAGS = -I$(ERL_EI_INCLUDE_DIR) -I/usr/local/include
LDFLAGS = -L$(ERL_EI_LIBDIR) -L/usr/local/lib
CFLAGS += -std=c99 -g -Wall -Werror
CPPFLAGS += -I$(ERL_EI_INCLUDE_DIR) -I/usr/local/include
LDFLAGS += -L$(ERL_EI_LIBDIR) -L/usr/local/lib
LDLIBS = -lpthread -lei -lm -lmagic
PRIV = priv/
RM = rm -Rf