Refactor framework -- point to a tests/* directory for the user supplied tests
This commit is contained in:
4
Makefile
4
Makefile
@ -16,8 +16,8 @@ OBJDIR = build
|
||||
LIBDIR = libs
|
||||
BINDIR = .
|
||||
|
||||
SRCS := $(shell find -L $(SRCDIR) $(LIBDIR) -type f -name '*.c')
|
||||
INCS := $(shell find -L $(SRCDIR) $(LIBDIR) $(INCDIR) -type d -name 'include')
|
||||
SRCS := $(shell find -L $(SRCDIR) $(LIBDIR) -type f -name '*.c' | egrep -v 'deps/|build/' )
|
||||
INCS := $(shell find -L $(SRCDIR) $(LIBDIR) $(INCDIR) -type d -name 'include'| egrep -v 'deps/|build/' )
|
||||
INCFLAGS := $(patsubst %,-I %, $(INCS))
|
||||
OBJS := $(patsubst %.c, build/%.o, $(SRCS))
|
||||
RM = rm -f
|
||||
|
Reference in New Issue
Block a user