Commit 30ead0b8cb850fb8978857cb250cf79efff1cfa8
1 parent
d9dd04ca
Exists in
master
and in
5 other branches
Acertando construcao de plugins
Showing
1 changed file
with
5 additions
and
4 deletions
Show diff stats
Makefile.in
| ... | ... | @@ -77,7 +77,8 @@ DBGCMDPREFIX=@DBGCMDPREFIX@ |
| 77 | 77 | MAKENSIS=@MAKENSIS@ |
| 78 | 78 | |
| 79 | 79 | PLUGIN_RELEASE_ARGS=BINDIR="../../../$(BINDIR)" LIB3270_MODE=Release |
| 80 | - | |
| 80 | +PLUGIN_DEBUG_ARGS=BINDIR="../../../$(BINDIR)" LIB3270_MODE=Debug | |
| 81 | + | |
| 81 | 82 | #---[ Rules ]------------------------------------------------------------------ |
| 82 | 83 | |
| 83 | 84 | %.tar.bz2: %.tar |
| ... | ... | @@ -351,19 +352,19 @@ distclean: clean |
| 351 | 352 | #---[ Plugins ]---------------------------------------------------------------- |
| 352 | 353 | |
| 353 | 354 | $(BINDIR)/Debug/plugins/remotectl@DLLEXT@: src/plugins/remotectl/* $(BINDIR)/Debug/$(PACKAGE_TARNAME)$(EXEEXT) |
| 354 | - @make BINDIR="../../../$(BINDIR)" PW3270_LIBS="-L../../../$(BINDIR)/Debug@DLLDIR@ -l3270 -lpw3270" PW3270_CFLAGS="-I../../../src/include" -C $(dir $<) Debug | |
| 355 | + @make $(PLUGIN_DEBUG_ARGS) -C $(dir $<) Debug | |
| 355 | 356 | |
| 356 | 357 | $(BINDIR)/Release/plugins/remotectl@DLLEXT@: src/plugins/remotectl/* $(BINDIR)/Release/$(PACKAGE_TARNAME)$(EXEEXT) |
| 357 | 358 | @make $(PLUGIN_RELEASE_ARGS) -C $(dir $<) Release |
| 358 | 359 | |
| 359 | 360 | $(BINDIR)/Debug/plugins/rx3270@DLLEXT@: src/plugins/rx3270/* $(BINDIR)/Debug/$(PACKAGE_TARNAME)$(EXEEXT) |
| 360 | - @make BINDIR="../../../$(BINDIR)" LIB3270_MODE=Debug -C $(dir $<) Debug | |
| 361 | + @make $(PLUGIN_DEBUG_ARGS) -C $(dir $<) Debug | |
| 361 | 362 | |
| 362 | 363 | $(BINDIR)/Release/plugins/rx3270@DLLEXT@: src/plugins/rx3270/* $(BINDIR)/Release/$(PACKAGE_TARNAME)$(EXEEXT) |
| 363 | 364 | @make $(PLUGIN_RELEASE_ARGS) -C $(dir $<) Release |
| 364 | 365 | |
| 365 | 366 | $(BINDIR)/Debug/plugins/dbus3270@DLLEXT@: src/plugins/dbus3270/* $(BINDIR)/Debug/$(PACKAGE_TARNAME)$(EXEEXT) |
| 366 | - @make BINDIR="../../../$(BINDIR)" LIB3270_MODE=Debug -C $(dir $<) Debug | |
| 367 | + @make $(PLUGIN_DEBUG_ARGS) -C $(dir $<) Debug | |
| 367 | 368 | |
| 368 | 369 | $(BINDIR)/Release/plugins/dbus3270@DLLEXT@: src/plugins/dbus3270/* $(BINDIR)/Release/$(PACKAGE_TARNAME)$(EXEEXT) |
| 369 | 370 | @make $(PLUGIN_RELEASE_ARGS) -C $(dir $<) Release | ... | ... |