diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2008-03-08 00:39:10 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2008-03-08 00:39:10 +0000 |
commit | 3d2892f18dce7e2ea91d7e36fa28afdc42f1a9ec (patch) | |
tree | dcfcb7e34ac83aabad2cb2280ab7c8c932f1c943 /packages | |
parent | 3715b8855e3fd0708331a618d239e00c906f1a08 (diff) |
added FFTW3 and Lua DLLs to the package
svn path=/trunk/; revision=9548
Diffstat (limited to 'packages')
-rwxr-xr-x | packages/win32_inno/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/packages/win32_inno/Makefile b/packages/win32_inno/Makefile index 211788b7..08aa016a 100755 --- a/packages/win32_inno/Makefile +++ b/packages/win32_inno/Makefile @@ -71,11 +71,14 @@ dlldir = $(DESTDIR)$(prefix)/ lib_install: # these get installed into %SystemRoot%\system32 by the installer install -d $(dlldir) + install -p $(bin_src)/libfftw3-3.dll $(dlldir) + install -p $(bin_src)/libfftw3f-3.dll $(dlldir) install -p $(bin_src)/libogg-0.dll $(dlldir) install -p $(bin_src)/libsndfile-1.dll $(dlldir) install -p $(bin_src)/libvorbis-0.dll $(dlldir) install -p $(bin_src)/libvorbisenc-2.dll $(dlldir) install -p $(bin_src)/libvorbisfile-3.dll $(dlldir) + install -p $(bin_src)/lua51.dll $(dlldir) install -p $(bin_src)/pthreadGC2.dll $(dlldir) # these stay with pd.exe install -p $(bin_src)/tcl84.dll $(bindir) |