Commit 62f0043c5a40dacae8a6e0a99bcb3e8bd0edeff4
1 parent
1141f83a
Exists in
master
and in
3 other branches
Em windows o debug é mais fácil se as DLLs forem geradas no mesmo diretório do executável
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
Makefile.in
@@ -76,11 +76,11 @@ DEPENDS ?= *.h Makefile | @@ -76,11 +76,11 @@ DEPENDS ?= *.h Makefile | ||
76 | 76 | ||
77 | BINDBG ?= $(BINDIR)/Debug | 77 | BINDBG ?= $(BINDIR)/Debug |
78 | BINRLS ?= $(BINDIR)/Release | 78 | BINRLS ?= $(BINDIR)/Release |
79 | -LIBDBG ?= $(BINDIR)/Debug/lib | 79 | +LIBDBG ?= $(BINDIR)/Debug@DLLDIR@ |
80 | 80 | ||
81 | OBJDBG = $(OBJDIR)/Debug | 81 | OBJDBG = $(OBJDIR)/Debug |
82 | OBJRLS = $(OBJDIR)/Release | 82 | OBJRLS = $(OBJDIR)/Release |
83 | -LIBRLS = $(OBJDIR)/Release/lib | 83 | +LIBRLS = $(OBJDIR)/Release@DLLDIR@ |
84 | 84 | ||
85 | #---[ Rules ]------------------------------------------------------------------ | 85 | #---[ Rules ]------------------------------------------------------------------ |
86 | 86 |