Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Stefan Strogin
flac
Commits
630d22ed
Commit
630d22ed
authored
Jan 25, 2003
by
Josh Coalson
Browse files
remove reference to obsolete Makefile.vc
parent
d8109c2d
Changes
27
Hide whitespace changes
Inline
Side-by-side
Makefile.am
View file @
630d22ed
...
...
@@ -38,7 +38,6 @@ EXTRA_DIST = \
COPYING.LGPL
\
FLAC.dsw
\
Makefile.lite
\
Makefile.vc
\
all.dsp
\
all_dynamic.dsp
\
all_static.dsp
\
...
...
README
View file @
630d22ed
...
...
@@ -151,52 +151,26 @@ not an x86, change -DFLAC__CPU_IA32 to -DFLAC__CPU_UNKNOWN.
Building with MSVC
===============================================================================
There are two ways to build with MSVC:
There are now .dsp projects and a master FLAC.dsw workspace to build
all the libraries and executables.
1. Project Files
----------------
Prerequisite: you must have the Ogg libraries installed as described
later.
Prerequisite: you must have the Ogg libraries installed as described
later.
Prerequisite: you must have nasm installed, and have the environment
variable FLAC_NASM set to the full path to nasmw.exe, e.g
Prerequisite: you must have nasm installed, and have the environment
variable FLAC_NASM set to the full path to nasmw.exe, e.g
C:\nasm\nasmw.exe
C:\nasm\nasmw.exe
To build everything, run Developer Studio, do File|Open Workspace,
and open FLAC.dsw. Switch to the 'Files' tab, select 'all files'
from the tree, do right-mouse-button and 'Set as active project'.
The default build mode will probably be Debug; to change to release
do Build|Set Active Configuration and select 'all - Win32 Release'.
Then do Project|Build. This will build all libraries both statically
(e.g. obj\debug\lib\libFLAC_static.lib) and as DLLs (e.g.
obj\debug\bin\libFLAC.dll), and it will build all binaries, statically
linked (e.g. obj\debug\bin\flac.exe).
To build everything, run Developer Studio, do File|Open Workspace,
and open FLAC.dsw. Select "Build | Set active configuration..."
from the menu, then in the dialog, select "All - Win32 Release" (or
Debug if you prefer). Click "Ok" then hit F7 to build. This will build
all libraries both statically (e.g. obj\release\lib\libFLAC_static.lib)
and as DLLs (e.g. obj\release\bin\libFLAC.dll), and it will build all
binaries, statically linked (e.g. obj\release\bin\flac.exe).
2. nmake
--------
Prerequisite: you must have the Ogg libraries installed as described
later.
Prerequisite: you must have nasm installed and nasmw.exe must be in
your path.
To build everything, open a Command window, cd to the top-level
directory (where this README is) and do
nmake /f Makefile.vc
This will recur into all the source directories in the right order
and build everything. The libraries will be build only as static
libs. You need only to install the binaries. To clean up everything
you can do
nmake /f Makefile.vc clean
from the top level directory, or any directory which has a
Makefile.vc
Everything will end up in the 'obj' directory. DLLs and .exe files
Everything will end up in the "obj" directory. DLLs and .exe files
are all that are needed and can be copied to an installation area and
added to the PATH. The plugins have to be copied to their appropriate
place in the player area. For Winamp2 this is <winamp2-dir>\Plugins
...
...
src/Makefile.am
View file @
630d22ed
...
...
@@ -43,5 +43,4 @@ SUBDIRS = \
test_streams
EXTRA_DIST
=
\
Makefile.lite
\
Makefile.vc
Makefile.lite
src/flac/Makefile.am
View file @
630d22ed
...
...
@@ -24,7 +24,6 @@ endif
EXTRA_DIST
=
\
Makefile.lite
\
Makefile.vc
\
flac.dsp
flac_SOURCES
=
\
...
...
src/libFLAC++/Makefile.am
View file @
630d22ed
...
...
@@ -24,7 +24,6 @@ m4data_DATA = libFLAC++.m4
EXTRA_DIST
=
\
Makefile.lite
\
Makefile.vc
\
libFLAC++_dynamic.dsp
\
libFLAC++_static.dsp
\
libFLAC++.m4
...
...
src/libFLAC/Makefile.am
View file @
630d22ed
...
...
@@ -39,7 +39,6 @@ m4data_DATA = libFLAC.m4
EXTRA_DIST
=
\
Makefile.lite
\
Makefile.vc
\
libFLAC_dynamic.dsp
\
libFLAC_static.dsp
\
libFLAC.m4
...
...
src/libOggFLAC++/Makefile.am
View file @
630d22ed
...
...
@@ -24,7 +24,6 @@ m4data_DATA = libOggFLAC++.m4
EXTRA_DIST
=
\
Makefile.lite
\
Makefile.vc
\
libOggFLAC++_dynamic.dsp
\
libOggFLAC++_static.dsp
\
libOggFLAC++.m4
...
...
src/libOggFLAC/Makefile.am
View file @
630d22ed
...
...
@@ -29,7 +29,6 @@ m4data_DATA = libOggFLAC.m4
EXTRA_DIST
=
\
Makefile.lite
\
Makefile.vc
\
libOggFLAC_dynamic.dsp
\
libOggFLAC_static.dsp
\
libOggFLAC.m4
...
...
src/metaflac/Makefile.am
View file @
630d22ed
...
...
@@ -20,7 +20,6 @@ CFLAGS = @CFLAGS@
EXTRA_DIST
=
\
Makefile.lite
\
Makefile.vc
\
metaflac.dsp
metaflac_SOURCES
=
\
...
...
src/monkeys_audio_utilities/Makefile.am
View file @
630d22ed
...
...
@@ -16,6 +16,3 @@
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
SUBDIRS
=
flac_mac flac_ren
EXTRA_DIST
=
\
Makefile.vc
src/monkeys_audio_utilities/flac_mac/Makefile.am
View file @
630d22ed
...
...
@@ -16,6 +16,5 @@
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
EXTRA_DIST
=
\
Makefile.vc
\
flac_mac.dsp
\
main.c
src/monkeys_audio_utilities/flac_ren/Makefile.am
View file @
630d22ed
...
...
@@ -16,6 +16,5 @@
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
EXTRA_DIST
=
\
Makefile.vc
\
flac_ren.dsp
\
main.c
src/plugin_common/Makefile.am
View file @
630d22ed
...
...
@@ -31,7 +31,6 @@ libplugin_common_a_SOURCES = \
EXTRA_DIST
=
\
Makefile.lite
\
Makefile.vc
\
README
\
plugin_common_static.dsp
...
...
src/plugin_winamp2/Makefile.am
View file @
630d22ed
...
...
@@ -18,7 +18,6 @@
SUBDIRS
=
include
EXTRA_DIST
=
\
Makefile.vc
\
config.h
\
config.c
\
in_flac.c
\
...
...
src/plugin_winamp3/README.txt
View file @
630d22ed
...
...
@@ -2,5 +2,4 @@ This plugin require the Wasabi SDK, and the project assumes that you have it
installed in the standard place: \Wasabi SDK. If not, you will have to edit
the .dsp file to change the path.
Also, you must build libFLAC first; if you haven't, cd to src\libFLAC and
run 'nmake /f Makefile.vc'
Also, you must build libFLAC first.
src/share/Makefile.am
View file @
630d22ed
...
...
@@ -19,5 +19,4 @@ SUBDIRS = gain_analysis getopt grabbag utf8
EXTRA_DIST
=
\
Makefile.lite
\
Makefile.vc
\
README
src/share/gain_analysis/Makefile.am
View file @
630d22ed
...
...
@@ -10,7 +10,6 @@ libgain_analysis_a_SOURCES = gain_analysis.c
EXTRA_DIST
=
\
Makefile.lite
\
Makefile.vc
\
gain_analysis_static.dsp
debug
:
...
...
src/share/getopt/Makefile.am
View file @
630d22ed
...
...
@@ -10,7 +10,6 @@ libgetopt_a_SOURCES = getopt.c getopt1.c
EXTRA_DIST
=
\
Makefile.lite
\
Makefile.vc
\
getopt_static.dsp
debug
:
...
...
src/share/grabbag/Makefile.am
View file @
630d22ed
...
...
@@ -14,7 +14,6 @@ libgrabbag_a_SOURCES = \
EXTRA_DIST
=
\
Makefile.lite
\
Makefile.vc
\
grabbag_static.dsp
debug
:
...
...
src/share/utf8/Makefile.am
View file @
630d22ed
...
...
@@ -10,7 +10,6 @@ libutf8_a_SOURCES = charset.c charset.h iconvert.c utf8.c
EXTRA_DIST
=
\
Makefile.lite
\
Makefile.vc
\
charmaps.h
\
makemap.c
\
charset_test.c
\
...
...
Prev
1
2
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment