Commit 88b949a8cdbfdb146ccd0962e4a665ac144aae95
1 parent
17264499
Exists in
master
and in
5 other branches
Incluindo classe para linkagem estática no pacote devel
Showing
3 changed files
with
12 additions
and
5 deletions
Show diff stats
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: 2013-07-17 09:44-0300\n" | |
| 8 | +"POT-Creation-Date: 2013-07-17 11:07-0300\n" | |
| 9 | 9 | "PO-Revision-Date: 2013-07-03 10:51-0300\n" |
| 10 | 10 | "Last-Translator: Perry Werneck <perry.werneck@gmail.com>\n" |
| 11 | 11 | "Language-Team: Português <perry.werneck@gmail.com>\n" | ... | ... |
pw3270.spec.in
src/classlib/Makefile.in
| ... | ... | @@ -25,7 +25,7 @@ |
| 25 | 25 | # |
| 26 | 26 | |
| 27 | 27 | PACKAGE=@PACKAGE_NAME@ |
| 28 | -LIBNAME=$(PACKAGE)cxx.a | |
| 28 | +LIBNAME=$(PACKAGE)class.a | |
| 29 | 29 | |
| 30 | 30 | #---[ Sources ]---------------------------------------------------------------- |
| 31 | 31 | |
| ... | ... | @@ -35,6 +35,8 @@ include class.mak |
| 35 | 35 | |
| 36 | 36 | prefix=@prefix@ |
| 37 | 37 | datarootdir=@datarootdir@ |
| 38 | +includedir=@includedir@ | |
| 39 | +libdir=@libdir@ | |
| 38 | 40 | |
| 39 | 41 | ROOTDIR ?= . |
| 40 | 42 | OBJDIR ?= $(ROOTDIR)/.obj |
| ... | ... | @@ -109,9 +111,13 @@ $(BINDBG)/$(LIBNAME): $(foreach SRC, $(basename $(CLASS_SRC)), $(OBJDBG)/$(SRC). |
| 109 | 111 | @ar rs $@ $^ |
| 110 | 112 | |
| 111 | 113 | #---[ Misc targets ]----------------------------------------------------------- |
| 112 | -install-sdk: | |
| 113 | - $(MKDIR) $(DESTDIR)$(datarootdir)/$(PACKAGE)/sample/classlib | |
| 114 | - $(INSTALL_DATA) *.cc $(DESTDIR)$(datarootdir)/$(PACKAGE)/sample/classlib | |
| 114 | +install-sdk: $(BINRLS)/$(LIBNAME) | |
| 115 | + @$(MKDIR) $(DESTDIR)$(datarootdir)/$(PACKAGE)/sample/classlib | |
| 116 | + @$(INSTALL_DATA) *.cc $(DESTDIR)$(datarootdir)/$(PACKAGE)/sample/classlib | |
| 117 | + @$(MKDIR) $(DESTDIR)/$(includedir)/pw3270 | |
| 118 | + @$(INSTALL_DATA) ../include/pw3270/class.h $(DESTDIR)/$(includedir)/pw3270 | |
| 119 | + @$(MKDIR) $(DESTDIR)$(libdir) | |
| 120 | + @$(INSTALL_DATA) $(BINRLS)/$(LIBNAME) $(DESTDIR)$(libdir) | |
| 115 | 121 | |
| 116 | 122 | clean: |
| 117 | 123 | @rm -fr $(OBJDIR) | ... | ... |