diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2012-11-30 01:47:12 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2012-11-30 01:47:12 +0000 |
commit | 997670deb40f2829abdecc5531393462a68377d3 (patch) | |
tree | 3b1e31d0236a4a667f34d475366897970b89d7ec /packages/win32_inno | |
parent | f3dc1af191c1f38c1761208b37475d135b58260a (diff) |
on Windows, use autoconf setup to install the translation files
svn path=/trunk/; revision=16619
Diffstat (limited to 'packages/win32_inno')
-rwxr-xr-x | packages/win32_inno/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/packages/win32_inno/Makefile b/packages/win32_inno/Makefile index 74eb423f..3e164968 100755 --- a/packages/win32_inno/Makefile +++ b/packages/win32_inno/Makefile @@ -72,8 +72,13 @@ $(pd_src)/asio/ASIOSDK2: $(HOME)/asiosdk2.2.zip build_pd: $(pd_src)/asio/ASIOSDK2 $(MAKE) -C $(pd_src)/src -f makefile.mingw MORECFLAGS="-O2 -g -fno-tree-vectorize -fno-strict-aliasing" +# use autoconf setup to install the translation files +pd_po_msg_install: + cd $(pd_src) && ./autogen.sh && ./configure + make -C $(pd_src)/po $(DEST_PATHS) install + PD_NAME=Pd -pd_install: build_pd +pd_install: build_pd pd_po_msg_install # the autoconf/MinGW setup doesn't compile the extras yet # $(MAKE) -C $(pd_src)/src $(DEST_PATHS) bin # -$(MAKE) -C $(pd_src)/src $(DEST_PATHS) install |