Fixed pattern rule for new make version
This commit is contained in:
parent
71b64a13cf
commit
00a6a03bd3
3
Makefile
3
Makefile
@ -30,6 +30,7 @@ DOCDIR ?= $(DATADIR)/$(LIBNAME)/doc
|
||||
|
||||
SRCS := $(notdir $(wildcard src/*.cpp))
|
||||
OBJS := $(SRCS:.cpp=.o)
|
||||
DEPS := $(SRCS:.cpp=.d)
|
||||
HDRS ?= $(wildcard src/*.hpp)
|
||||
|
||||
CXX ?= g++
|
||||
@ -73,7 +74,7 @@ endif
|
||||
$(CXX) $(CXXFLAGS) -MMD -MP -MT $@ -MF $*.d -c $<
|
||||
@mv $@ $*.d $(BUILDDIR)
|
||||
|
||||
-include $(BUILDDIR)$(SRCS:.cpp=.d)
|
||||
-include $(addprefix $(BUILDDIR), $(DEPS))
|
||||
|
||||
$(OUTDIR)$(STATICLIB): $(OBJS)
|
||||
ar r $(OUTDIR)$(STATICLIB) $(addprefix $(BUILDDIR),$(OBJS))
|
||||
|
@ -3,3 +3,5 @@ LDLIBS := -lm
|
||||
MAJOR := 1
|
||||
MINOR := 0
|
||||
PATCH := 0
|
||||
|
||||
GENERATELIBHEADER := 1
|
||||
|
Loading…
x
Reference in New Issue
Block a user