Commit 46811be837334fec3d8597082b35b45661a32730
1 parent
57d9adeb
Exists in
master
and in
5 other branches
Corrigindo montagem de versão.
Showing
3 changed files
with
11 additions
and
5 deletions
Show diff stats
configure.ac
| ... | ... | @@ -350,6 +350,7 @@ dnl Configure which files to generate. |
| 350 | 350 | dnl --------------------------------------------------------------------------- |
| 351 | 351 | |
| 352 | 352 | AC_CONFIG_FILES(src/lib3270/Makefile) |
| 353 | +AC_CONFIG_FILES(src/lib3270/mkversion.sh) | |
| 353 | 354 | |
| 354 | 355 | AC_CONFIG_FILES(src/pw3270/Makefile) |
| 355 | 356 | AC_CONFIG_FILES(src/pw3270/v3270/Makefile) | ... | ... |
src/lib3270/Makefile.in
| ... | ... | @@ -239,7 +239,7 @@ $(SRCDIR): \ |
| 239 | 239 | clean |
| 240 | 240 | |
| 241 | 241 | @$(MKDIR) $@ |
| 242 | - @$(INSTALL_DATA) *.c *.h *.in *.cbp *.xad *.sh $@ | |
| 242 | + @$(INSTALL_DATA) *.c *.h *.in *.cbp *.xad $@ | |
| 243 | 243 | |
| 244 | 244 | |
| 245 | 245 | #---[ Clean Targets]--------------------------------------------------------------------- |
| ... | ... | @@ -251,6 +251,10 @@ cleanDebug: |
| 251 | 251 | $(BINDBG)/$(LIBNAME).@PACKAGE_MAJOR_VERSION@ \ |
| 252 | 252 | $(BINDBG)/$(LIBNAME).@PACKAGE_MAJOR_VERSION@.@PACKAGE_MINOR_VERSION@ |
| 253 | 253 | |
| 254 | + @rm -f \ | |
| 255 | + fallbacks.c \ | |
| 256 | + version.c | |
| 257 | + | |
| 254 | 258 | cleanRelease: |
| 255 | 259 | |
| 256 | 260 | @rm -fr $(OBJRLS) \ |
| ... | ... | @@ -259,13 +263,13 @@ cleanRelease: |
| 259 | 263 | $(BINRLS)/$(LIBNAME).@PACKAGE_MAJOR_VERSION@.@PACKAGE_MINOR_VERSION@ \ |
| 260 | 264 | $(POTDIR) |
| 261 | 265 | |
| 266 | + @rm -f \ | |
| 267 | + fallbacks.c \ | |
| 268 | + version.c | |
| 262 | 269 | clean: \ |
| 263 | 270 | cleanDebug \ |
| 264 | 271 | cleanRelease |
| 265 | 272 | |
| 266 | - @rm -f \ | |
| 267 | - fallbacks.c \ | |
| 268 | - version.c | |
| 269 | 273 | |
| 270 | 274 | |
| 271 | 275 | ... | ... |
src/lib3270/mkversion.sh.in