Commit 750bab5292badabf3da8fb259a93262b13b90c79
1 parent
f65a8059
Exists in
master
and in
5 other branches
Fixing build.
Showing
1 changed file
with
21 additions
and
5 deletions
Show diff stats
Makefile.in
... | ... | @@ -88,7 +88,7 @@ $(BINDBG)/@DLLPREFIX@@LIB3270_NAME@@DLLEXT@: \ |
88 | 88 | modules/lib3270/src/include/lib3270/* |
89 | 89 | |
90 | 90 | @$(MKDIR) `dirname $@` |
91 | - @$(MAKE) -C modules/lib3270 Debug | |
91 | + @$(MAKE) -C modules/lib3270 $@ | |
92 | 92 | |
93 | 93 | $(BINDBG)/@DLLPREFIX@v@LIB3270_NAME@@DLLEXT@: \ |
94 | 94 | modules/libv3270/* \ |
... | ... | @@ -97,7 +97,7 @@ $(BINDBG)/@DLLPREFIX@v@LIB3270_NAME@@DLLEXT@: \ |
97 | 97 | modules/libv3270/src/include/v3270/* \ |
98 | 98 | |
99 | 99 | @$(MKDIR) `dirname $@` |
100 | - @$(MAKE) -C modules/libv3270 Debug | |
100 | + @$(MAKE) -C modules/libv3270 $@ | |
101 | 101 | |
102 | 102 | $(BINDBG)/%@EXEEXT@: \ |
103 | 103 | $(BINDBG)/@DLLPREFIX@@LIB3270_NAME@@DLLEXT@ \ |
... | ... | @@ -115,15 +115,31 @@ $(BINDBG)/plugins/%@DLLEXT@: \ |
115 | 115 | |
116 | 116 | #---[ Release Rules ]-------------------------------------------------------------------- |
117 | 117 | |
118 | +$(BINRLS)/@DLLPREFIX@@LIB3270_NAME@@DLLEXT@: \ | |
119 | + modules/lib3270/* \ | |
120 | + modules/lib3270/src/lib3270/* \ | |
121 | + modules/lib3270/src/include/* \ | |
122 | + modules/lib3270/src/include/lib3270/* | |
123 | + | |
124 | + @$(MKDIR) `dirname $@` | |
125 | + @$(MAKE) -C modules/lib3270 $@ | |
126 | + | |
127 | +$(BINRLS)/@DLLPREFIX@v@LIB3270_NAME@@DLLEXT@: \ | |
128 | + modules/libv3270/* \ | |
129 | + modules/libv3270/src/v3270/* \ | |
130 | + modules/libv3270/src/include/* \ | |
131 | + modules/libv3270/src/include/v3270/* \ | |
132 | + | |
133 | + @$(MKDIR) `dirname $@` | |
134 | + @$(MAKE) -C modules/libv3270 $@ | |
135 | + | |
118 | 136 | $(BINRLS)/@DLLPREFIX@3270@DLLEXT@: \ |
119 | 137 | modules/lib3270/* \ |
120 | 138 | modules/lib3270/src/lib3270/* \ |
121 | 139 | modules/lib3270/src/include/* |
122 | 140 | |
123 | 141 | @$(MKDIR) `dirname $@` |
124 | - @$(MAKE) -C modules/lib3270 Release | |
125 | - | |
126 | - @cp ./modules/lib3270/.bin/Release/* $(BINRLS) | |
142 | + @$(MAKE) -C modules/lib3270 $@ | |
127 | 143 | |
128 | 144 | $(BINRLS)/%@EXEEXT@: \ |
129 | 145 | $(BINRLS)/@DLLPREFIX@3270@DLLEXT@ \ | ... | ... |