~aritra1911/prime

57b4bcc34427b02389fe74c4c1264e0dbf01f65a — Aritra Sarkar 2 years ago 062f7ec master
Add `/usr/local` to IDIRS and LDIRS
1 files changed, 6 insertions(+), 2 deletions(-)

M sha_consts/Makefile
M sha_consts/Makefile => sha_consts/Makefile +6 -2
@@ 1,5 1,9 @@
CFLAGS = -I. -I../eratosthenes -Wall -Wextra -pedantic -std=c99 -g -O0
LDFLAGS = -lm -lmpfr
IDIRS = -I. -I../eratosthenes -I/usr/local/include
LDIRS = -L/usr/local/lib
LIBS = -lm -lmpfr

CFLAGS = $(IDIRS) -Wall -Wextra -pedantic -std=c99 -g -O0
LDFLAGS = $(LDIRS) $(LIBS)

SRCS = ../eratosthenes/eratosthenes.c sha_consts.c main.c
OBJS = $(SRCS:.c=.o)