diff --git a/Makefile b/Makefile index 782cc91..e8e4461 100644 --- a/Makefile +++ b/Makefile @@ -4,6 +4,8 @@ # Created by falkTX # +include dpf/Makefile.base.mk + all: libs examples # -------------------------------------------------------------- diff --git a/dpf b/dpf index d49366d..c3bf5ec 160000 --- a/dpf +++ b/dpf @@ -1 +1 @@ -Subproject commit d49366db694fb9097210ba9665449f6a67025285 +Subproject commit c3bf5ecada36bd49f599f20aba63182522ea04cf diff --git a/examples/Makefile b/examples/Makefile index ef53606..f081d3e 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -4,12 +4,12 @@ # Created by falkTX # -include ../dpf/dgl/Makefile.mk +include ../dpf/Makefile.base.mk # -------------------------------------------------------------- BUILD_CXX_FLAGS += -I../dpf/distrho -I../dpf/dgl -LINK_FLAGS += -L../dpf -ldgl $(DGL_LIBS) +LINK_FLAGS += -L../dpf/build -ldgl $(DGL_LIBS) WINDRES ?= windres @@ -28,7 +28,7 @@ all: ../libdgl.a $(TARGETS) build: $(TARGETS) clean: - rm -f $(TARGETS) win32/distrho.o + rm -f $(TARGETS) $(TARGETS:=.d) win32/distrho.o debug: $(MAKE) DEBUG=true