diff --git a/Makefile b/Makefile index 20af8a7..f9bff89 100644 --- a/Makefile +++ b/Makefile @@ -12,9 +12,10 @@ ifndef OS OS = $(shell uname -s) endif ifneq ($(OS), Linux) - ARGP = /usr/local - CFLAGS += -I$(ARGP)/include - LDFLAGS += -L$(ARGP)/lib -largp + ARGP = /usr/local# Intel + ARGP2 = /opt/homebrew# Apple Silicon + CFLAGS += -I$(ARGP)/include -I$(ARGP2)/include + LDFLAGS += -L$(ARGP)/lib -L$(ARGP2)/lib -largp endif all: $(TARGETS)