diff --git a/Makefile b/Makefile index 7a31374..0836053 100644 --- a/Makefile +++ b/Makefile @@ -16,8 +16,8 @@ OBJDIR = build LIBDIR = libs BINDIR = . -SRCS := $(shell find $(SRCDIR) $(LIBDIR) -type f -name '*.c') -INCS := $(shell find $(SRCDIR) $(LIBDIR) $(INCDIR) -type d -name 'include') +SRCS := $(shell find -L $(SRCDIR) $(LIBDIR) -type f -name '*.c') +INCS := $(shell find -L $(SRCDIR) $(LIBDIR) $(INCDIR) -type d -name 'include') INCFLAGS := $(patsubst %,-I %, $(INCS)) OBJS := $(patsubst %.c, build/%.o, $(SRCS)) RM = rm -f