Commit 9aab90fda2ce5e9556b3070ae894734f2c8848f6
1 parent
29238cbb
Exists in
master
and in
5 other branches
Ajustando compilação em função das mudancas na configuração.
Showing
1 changed file
with
8 additions
and
1 deletions
Show diff stats
src/pw3270/Makefile.in
... | ... | @@ -155,13 +155,20 @@ $(LIBRLS)/@DLLPREFIX@$(PACKAGE_TARNAME)@DLLEXT@: \ |
155 | 155 | @cd $(LIBRLS) && $(LN_S) @DLLPREFIX@$(PACKAGE_TARNAME)@DLLEXT@.$(PACKAGE_VERSION) @DLLPREFIX@$(PACKAGE_TARNAME)@DLLEXT@ |
156 | 156 | |
157 | 157 | $(LIBRLS)/@DLLPREFIX@$(PACKAGE_TARNAME)@DLLEXT@.$(PACKAGE_VERSION): \ |
158 | - $(foreach SRC, $(basename $(LIB_SOURCES)), $(OBJRLS)/$(SRC)$(OBJEXT)) | |
158 | + $(foreach SRC, $(basename $(LIB_SOURCES)), $(OBJRLS)/$(SRC)$(OBJEXT)) \ | |
159 | + .bin/Release/v3270ft.a | |
159 | 160 | |
160 | 161 | @echo " CCLD `basename $@`" |
161 | 162 | @$(MKDIR) `dirname $@` |
162 | 163 | @$(LD) $(DLL_FLAGS) $(LDFLAGS) @LDSOFLAGS@ @LDLIBFLAGS@ @RLS_LDFLAGS@ -o $@ $^ $(LIBS) $(LIB3270_LIBS) |
163 | 164 | @$(STRIP) $@ |
164 | 165 | |
166 | +.bin/Release/v3270ft.a: \ | |
167 | + v3270ft/* | |
168 | + | |
169 | + @$(MAKE) BINDIR=../.bin -C v3270ft Release | |
170 | + | |
171 | + | |
165 | 172 | #---[ Debug targets ]---------------------------------------------------------- |
166 | 173 | |
167 | 174 | Debug: $(BINDBG)/$(PACKAGE_TARNAME)$(EXEEXT) | ... | ... |