Commit de2e8e26202ae5e95a937a11044dad52d4ba8239
1 parent
c9e7e91a
Exists in
master
and in
5 other branches
Ajustando empacotamento sdk
Showing
3 changed files
with
11 additions
and
4 deletions
Show diff stats
Makefile.in
| ... | ... | @@ -360,6 +360,7 @@ install-man: |
| 360 | 360 | @$(INSTALL_DATA) man/man5/pw3270.5 $(DESTDIR)/$(mandir)/man5/pw3270.5 |
| 361 | 361 | |
| 362 | 362 | install-sdk: |
| 363 | + | |
| 363 | 364 | @$(MKDIR) $(DESTDIR)$(includedir)/lib3270 |
| 364 | 365 | @$(INSTALL_DATA) src/include/lib3270.h $(DESTDIR)/$(includedir) |
| 365 | 366 | @$(INSTALL_DATA) src/include/lib3270/config.h $(DESTDIR)/$(includedir)/lib3270 | ... | ... |
po/pt_BR.po
| ... | ... | @@ -5,7 +5,7 @@ msgid "" |
| 5 | 5 | msgstr "" |
| 6 | 6 | "Project-Id-Version: pw3270 5.0\n" |
| 7 | 7 | "Report-Msgid-Bugs-To: \n" |
| 8 | -"POT-Creation-Date: 2016-12-11 04:37-0200\n" | |
| 8 | +"POT-Creation-Date: 2016-12-16 16:03-0200\n" | |
| 9 | 9 | "PO-Revision-Date: 2016-10-25 10:47-0200\n" |
| 10 | 10 | "Last-Translator: Perry Werneck <perry.werneck@gmail.com>\n" |
| 11 | 11 | "Language-Team: Português <perry.werneck@gmail.com>\n" | ... | ... |
src/classlib/Makefile.in
| ... | ... | @@ -34,6 +34,7 @@ include class.mak |
| 34 | 34 | #---[ Paths ]------------------------------------------------------------------ |
| 35 | 35 | |
| 36 | 36 | prefix=@prefix@ |
| 37 | +exec_prefix=@exec_prefix@ | |
| 37 | 38 | datarootdir=@datarootdir@ |
| 38 | 39 | includedir=@includedir@ |
| 39 | 40 | libdir=@libdir@ |
| ... | ... | @@ -137,14 +138,19 @@ $(BINDBG)/$(LIBNAME): $(foreach SRC, $(basename $(CLASS_SRC)), $(OBJDBG)/$(SRC). |
| 137 | 138 | @ar rs $@ $^ |
| 138 | 139 | |
| 139 | 140 | #---[ Misc targets ]----------------------------------------------------------- |
| 140 | -install-sdk: $(BINRLS)/$(LIBNAME) | |
| 141 | +install-sdk: \ | |
| 142 | + $(BINRLS)/$(LIBNAME) | |
| 143 | + | |
| 141 | 144 | @$(MKDIR) $(DESTDIR)$(datarootdir)/$(PACKAGE)/sample/classlib |
| 142 | 145 | @$(INSTALL_DATA) *.cc $(DESTDIR)$(datarootdir)/$(PACKAGE)/sample/classlib |
| 146 | + | |
| 143 | 147 | @$(MKDIR) $(DESTDIR)/$(includedir)/pw3270 |
| 144 | 148 | @$(INSTALL_DATA) ../include/pw3270/class.h $(DESTDIR)/$(includedir)/pw3270 |
| 149 | + | |
| 145 | 150 | @$(LN_S) ./pw3270/class.h $(DESTDIR)/$(includedir)/$(PACKAGE)cpp.h |
| 146 | - @$(MKDIR) $(DESTDIR)$(libdir) | |
| 147 | - @$(INSTALL_DATA) $(BINRLS)/$(LIBNAME) $(DESTDIR)$(libdir) | |
| 151 | + | |
| 152 | + @$(MKDIR) $(DESTDIR)/$(libdir) | |
| 153 | + @$(INSTALL_DATA) $(BINRLS)/$(LIBNAME) $(DESTDIR)/$(libdir) | |
| 148 | 154 | |
| 149 | 155 | cleanDebug: clean |
| 150 | 156 | ... | ... |