Commit 83fe410a6b394923f7270fb2ec23002878ec750e
1 parent
061f6aea
Exists in
master
Implementando geração do plugin e extensão ooRexx via Makefile.
Showing
2 changed files
with
2 additions
and
5 deletions
Show diff stats
Makefile.in
... | ... | @@ -172,7 +172,6 @@ $(SRCDIR): \ |
172 | 172 | |
173 | 173 | $(BINRLS)/$(LIBNAME): \ |
174 | 174 | src/extension/*.cc \ |
175 | - src/extension/*.h \ | |
176 | 175 | src/include/*.h |
177 | 176 | |
178 | 177 | @make -C src/extension $@ |
... | ... | @@ -180,15 +179,13 @@ $(BINRLS)/$(LIBNAME): \ |
180 | 179 | $(BINRLS)/$(PLUGIN): \ |
181 | 180 | $(BINRLS)/$(LIBNAME) \ |
182 | 181 | src/plugin/*.cc \ |
183 | - src/plugin/*.h \ | |
184 | 182 | src/include/*.h |
185 | 183 | |
186 | 184 | @make -C src/plugin $@ |
187 | 185 | |
188 | 186 | Debug: \ |
189 | - $(BINDBG)/$(PLUGIN) \ | |
190 | 187 | $(BINDBG)/$(LIBNAME) \ |
191 | - $(BINDBG)/sample.exe | |
188 | + $(BINDBG)/$(PLUGIN) | |
192 | 189 | |
193 | 190 | $(BINDBG)/$(LIBNAME): \ |
194 | 191 | src/extension/*.cc \ | ... | ... |
configure.ac
... | ... | @@ -345,7 +345,7 @@ dnl --------------------------------------------------------------------------- |
345 | 345 | dnl Configure which files to generate. |
346 | 346 | dnl --------------------------------------------------------------------------- |
347 | 347 | |
348 | -dnl AC_CONFIG_FILES(Makefile) | |
348 | +AC_CONFIG_FILES(Makefile) | |
349 | 349 | AC_CONFIG_FILES(src/extension/Makefile) |
350 | 350 | AC_CONFIG_FILES(src/plugin/Makefile) |
351 | 351 | ... | ... |