Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
flac
Commits
18db4f46
Commit
18db4f46
authored
Oct 16, 2002
by
Josh Coalson
Browse files
change .cc suffix to .cpp
parent
f420524f
Changes
5
Hide whitespace changes
Inline
Side-by-side
flac.pbproj/project.pbxproj
View file @
18db4f46
...
...
@@ -1214,27 +1214,27 @@
};
F5CA9EDB02D186C7011525B7
=
{
isa
=
PBXFileReference
;
path
=
file_decoder.c
c
;
path
=
file_decoder.c
pp
;
refType
=
4
;
};
F5CA9EDC02D186C7011525B7
=
{
isa
=
PBXFileReference
;
path
=
metadata.c
c
;
path
=
metadata.c
pp
;
refType
=
4
;
};
F5CA9EDD02D186C7011525B7
=
{
isa
=
PBXFileReference
;
path
=
seekable_stream_decoder.c
c
;
path
=
seekable_stream_decoder.c
pp
;
refType
=
4
;
};
F5CA9EDE02D186C7011525B7
=
{
isa
=
PBXFileReference
;
path
=
stream_decoder.c
c
;
path
=
stream_decoder.c
pp
;
refType
=
4
;
};
F5CA9EDF02D186C7011525B7
=
{
isa
=
PBXFileReference
;
path
=
stream_encoder.c
c
;
path
=
stream_encoder.c
pp
;
refType
=
4
;
};
F5CA9EE002D186C7011525B7
=
{
...
...
@@ -1353,7 +1353,7 @@
};
F5CA9EF302D1874F011525B7
=
{
isa
=
PBXFileReference
;
path
=
decoders.c
c
;
path
=
decoders.c
pp
;
refType
=
4
;
};
F5CA9EF402D1874F011525B7
=
{
...
...
@@ -1363,7 +1363,7 @@
};
F5CA9EF502D1874F011525B7
=
{
isa
=
PBXFileReference
;
path
=
encoders.c
c
;
path
=
encoders.c
pp
;
refType
=
4
;
};
F5CA9EF602D1874F011525B7
=
{
...
...
@@ -1383,12 +1383,12 @@
};
F5CA9EF902D1874F011525B7
=
{
isa
=
PBXFileReference
;
path
=
main.c
c
;
path
=
main.c
pp
;
refType
=
4
;
};
F5CA9EFA02D1874F011525B7
=
{
isa
=
PBXFileReference
;
path
=
metadata.c
c
;
path
=
metadata.c
pp
;
refType
=
4
;
};
F5CA9EFB02D1874F011525B7
=
{
...
...
@@ -1398,12 +1398,12 @@
};
F5CA9EFC02D1874F011525B7
=
{
isa
=
PBXFileReference
;
path
=
metadata_manip.c
c
;
path
=
metadata_manip.c
pp
;
refType
=
4
;
};
F5CA9EFD02D1874F011525B7
=
{
isa
=
PBXFileReference
;
path
=
metadata_object.c
c
;
path
=
metadata_object.c
pp
;
refType
=
4
;
};
F5CA9EFE02D1874F011525B7
=
{
...
...
src/libFLAC++/Makefile.vc
View file @
18db4f46
...
...
@@ -18,48 +18,32 @@
!
include
<win32.mak>
SUFFIXES
=
.c
c
SUFFIXES
=
.c
pp
!IFDEF
DEBUG
.c
c
.obj
:
.c
pp
.obj
:
$(cc)
/D
"_LIB"
/GX /GR
$(cdebug)
$(cflags)
/I
"..
\.
.
\i
nclude"
-DSTRICT
-YX
/Od /D
"_DEBUG"
$<
!else
.c
c
.obj
:
.c
pp
.obj
:
$(cc)
/D
"_LIB"
/O2 /GR
$(crelease)
$(cflags)
/I
"..
\.
.
\i
nclude"
-DSTRICT
-YX
-DNODEBUG
$<
!endif
C
C
_FILES
=
\
file_decoder.c
c
\
file_encoder.c
c
\
metadata.c
c
\
seekable_stream_decoder.c
c
\
seekable_stream_encoder.c
c
\
stream_decoder.c
c
\
stream_encoder.c
c
C
PP
_FILES
=
\
file_decoder.c
pp
\
file_encoder.c
pp
\
metadata.c
pp
\
seekable_stream_decoder.c
pp
\
seekable_stream_encoder.c
pp
\
stream_decoder.c
pp
\
stream_encoder.c
pp
OBJS
=
$(C
C
_FILES:.c
c
=.obj)
OBJS
=
$(C
PP
_FILES:.c
pp
=.obj)
all
:
libFLAC++.lib
libFLAC++.lib
:
$(OBJS)
link.exe
-lib
/nodefaultlib
-out
:../../obj/lib/
$*
.lib
$(OBJS)
# can't figure out how to get it to take .cc so we just hack it for now:
file_decoder.obj
:
file_decoder.cc
$(cc)
/D
"_LIB"
/O2 /GR
$(crelease)
$(cflags)
/I
"..
\.
.
\i
nclude"
-DSTRICT
-YX
-DNODEBUG
/TP file_decoder.cc
file_encoder.obj
:
file_encoder.cc
$(cc)
/D
"_LIB"
/O2 /GR
$(crelease)
$(cflags)
/I
"..
\.
.
\i
nclude"
-DSTRICT
-YX
-DNODEBUG
/TP file_encoder.cc
metadata.obj
:
metadata.cc
$(cc)
/D
"_LIB"
/O2 /GR
$(crelease)
$(cflags)
/I
"..
\.
.
\i
nclude"
-DSTRICT
-YX
-DNODEBUG
/TP metadata.cc
seekable_stream_decoder.obj
:
seekable_stream_decoder.cc
$(cc)
/D
"_LIB"
/O2 /GR
$(crelease)
$(cflags)
/I
"..
\.
.
\i
nclude"
-DSTRICT
-YX
-DNODEBUG
/TP seekable_stream_decoder.cc
seekable_stream_encoder.obj
:
seekable_stream_encoder.cc
$(cc)
/D
"_LIB"
/O2 /GR
$(crelease)
$(cflags)
/I
"..
\.
.
\i
nclude"
-DSTRICT
-YX
-DNODEBUG
/TP seekable_stream_encoder.cc
stream_decoder.obj
:
stream_decoder.cc
$(cc)
/D
"_LIB"
/O2 /GR
$(crelease)
$(cflags)
/I
"..
\.
.
\i
nclude"
-DSTRICT
-YX
-DNODEBUG
/TP stream_decoder.cc
stream_encoder.obj
:
stream_encoder.cc
$(cc)
/D
"_LIB"
/O2 /GR
$(crelease)
$(cflags)
/I
"..
\.
.
\i
nclude"
-DSTRICT
-YX
-DNODEBUG
/TP stream_encoder.cc
clean
:
-
del
*
.obj
*
.pch
-
del ..
\.
.
\o
bj
\l
ib
\l
ibFLAC++.lib ..
\.
.
\o
bj
\l
ib
\l
ibFLAC++.pdb
src/libOggFLAC++/Makefile.vc
View file @
18db4f46
...
...
@@ -18,33 +18,27 @@
!
include
<win32.mak>
SUFFIXES
=
.c
c
SUFFIXES
=
.c
pp
!IFDEF
DEBUG
.c
c
.obj
:
.c
pp
.obj
:
$(cc)
/D
"_LIB"
/GX /GR
$(cdebug)
$(cflags)
/I
"..
\.
.
\i
nclude"
-DSTRICT
-YX
/Od /D
"_DEBUG"
$<
!else
.c
c
.obj
:
.c
pp
.obj
:
$(cc)
/D
"_LIB"
/O2 /GR
$(crelease)
$(cflags)
/I
"..
\.
.
\i
nclude"
-DSTRICT
-YX
-DNODEBUG
$<
!endif
C
C
_FILES
=
\
stream_decoder.c
c
\
stream_encoder.c
c
C
PP
_FILES
=
\
stream_decoder.c
pp
\
stream_encoder.c
pp
OBJS
=
$(C
C
_FILES:.c
c
=.obj)
OBJS
=
$(C
PP
_FILES:.c
pp
=.obj)
all
:
libOggFLAC++.lib
libOggFLAC++.lib
:
$(OBJS)
link.exe
-lib
/nodefaultlib
-out
:../../obj/lib/
$*
.lib
$(OBJS)
# can't figure out how to get it to take .cc so we just hack it for now:
stream_decoder.obj
:
stream_decoder.cc
$(cc)
/D
"_LIB"
/O2 /GR
$(crelease)
$(cflags)
/I
"..
\.
.
\i
nclude"
-DSTRICT
-YX
-DNODEBUG
/TP stream_decoder.cc
stream_encoder.obj
:
stream_encoder.cc
$(cc)
/D
"_LIB"
/O2 /GR
$(crelease)
$(cflags)
/I
"..
\.
.
\i
nclude"
-DSTRICT
-YX
-DNODEBUG
/TP stream_encoder.cc
clean
:
-
del
*
.obj
*
.pch
-
del ..
\.
.
\o
bj
\l
ib
\l
ibOggFLAC++.lib ..
\.
.
\o
bj
\l
ib
\l
ibOggFLAC++.pdb
src/test_libFLAC++/Makefile.vc
View file @
18db4f46
...
...
@@ -17,7 +17,7 @@
!
include
<win32.mak>
SUFFIXES
=
.c
c
SUFFIXES
=
.c
pp
!IFDEF
DEBUG
.c.obj
:
...
...
@@ -28,45 +28,31 @@ SUFFIXES = .cc
!endif
!IFDEF
DEBUG
.c
c
.obj
:
.c
pp
.obj
:
$(cc)
/GR /D
"_LIB"
/GX
$(cdebug)
$(cflags)
/I
"..
\.
.
\i
nclude"
-DSTRICT
-YX
/Od /D
"_DEBUG"
$<
!else
.c
c
.obj
:
.c
pp
.obj
:
$(cc)
/GR /D
"_LIB"
/O2
$(crelease)
$(cflags)
/I
"..
\.
.
\i
nclude"
-DSTRICT
-YX
-DNODEBUG
$<
!endif
C_FILES
=
\
file_utils.c
C
C
_FILES
=
\
decoders.c
c
\
encoders.c
c
\
main.c
c
\
metadata.c
c
\
metadata_manip.c
c
\
metadata_object.c
c
C
PP
_FILES
=
\
decoders.c
pp
\
encoders.c
pp
\
main.c
pp
\
metadata.c
pp
\
metadata_manip.c
pp
\
metadata_object.c
pp
C_OBJS
=
$(C_FILES:.c=.obj)
C
C
_OBJS
=
$(C
C
_FILES:.c
c
=.obj)
C
PP
_OBJS
=
$(C
PP
_FILES:.c
pp
=.obj)
all
:
test_libFLAC++.exe
# can't figure out how to get it to take .cc so we just hack it for now:
decoders.obj
:
decoders.cc
$(cc)
/GR /D
"_LIB"
/O2
$(crelease)
$(cflags)
/I
"..
\.
.
\i
nclude"
-DSTRICT
-YX
-DNODEBUG
/TP decoders.cc
encoders.obj
:
encoders.cc
$(cc)
/GR /D
"_LIB"
/O2
$(crelease)
$(cflags)
/I
"..
\.
.
\i
nclude"
-DSTRICT
-YX
-DNODEBUG
/TP encoders.cc
main.obj
:
main.cc
$(cc)
/GR /D
"_LIB"
/O2
$(crelease)
$(cflags)
/I
"..
\.
.
\i
nclude"
-DSTRICT
-YX
-DNODEBUG
/TP main.cc
metadata.obj
:
metadata.cc
$(cc)
/GR /D
"_LIB"
/O2
$(crelease)
$(cflags)
/I
"..
\.
.
\i
nclude"
-DSTRICT
-YX
-DNODEBUG
/TP metadata.cc
metadata_manip.obj
:
metadata_manip.cc
$(cc)
/GR /D
"_LIB"
/O2
$(crelease)
$(cflags)
/I
"..
\.
.
\i
nclude"
-DSTRICT
-YX
-DNODEBUG
/TP metadata_manip.cc
metadata_object.obj
:
metadata_object.cc
$(cc)
/GR /D
"_LIB"
/O2
$(crelease)
$(cflags)
/I
"..
\.
.
\i
nclude"
-DSTRICT
-YX
-DNODEBUG
/TP metadata_object.cc
test_libFLAC++.exe
:
$(C_OBJS) $(CC_OBJS)
link.exe /libpath:
"..
\.
.
\o
bj
\l
ib"
-out
:../../obj/bin/
$*
.exe
$(CC_OBJS)
$(C_OBJS)
libFLAC++.lib libFLAC.lib
test_libFLAC++.exe
:
$(C_OBJS) $(CPP_OBJS)
link.exe /libpath:
"..
\.
.
\o
bj
\l
ib"
-out
:../../obj/bin/
$*
.exe
$(CPP_OBJS)
$(C_OBJS)
libFLAC++.lib libFLAC.lib
clean
:
-
del
*
.obj
*
.pch
...
...
src/test_libOggFLAC++/Makefile.vc
View file @
18db4f46
...
...
@@ -17,7 +17,7 @@
!
include
<win32.mak>
SUFFIXES
=
.c
c
SUFFIXES
=
.c
pp
!IFDEF
DEBUG
.c.obj
:
...
...
@@ -28,36 +28,28 @@ SUFFIXES = .cc
!endif
!IFDEF
DEBUG
.c
c
.obj
:
.c
pp
.obj
:
$(cc)
/GR /D
"_LIB"
/GX
$(cdebug)
$(cflags)
/I
"..
\.
.
\i
nclude"
-DSTRICT
-YX
/Od /D
"_DEBUG"
$<
!else
.c
c
.obj
:
.c
pp
.obj
:
$(cc)
/GR /D
"_LIB"
/O2
$(crelease)
$(cflags)
/I
"..
\.
.
\i
nclude"
-DSTRICT
-YX
-DNODEBUG
$<
!endif
C_FILES
=
\
file_utils.c
C
C
_FILES
=
\
decoders.c
c
\
encoders.c
c
\
main.c
c
C
PP
_FILES
=
\
decoders.c
pp
\
encoders.c
pp
\
main.c
pp
C_OBJS
=
$(C_FILES:.c=.obj)
C
C
_OBJS
=
$(C
C
_FILES:.c
c
=.obj)
C
PP
_OBJS
=
$(C
PP
_FILES:.c
pp
=.obj)
all
:
test_libOggFLAC++.exe
# can't figure out how to get it to take .cc so we just hack it for now:
decoders.obj
:
decoders.cc
$(cc)
/GR /D
"_LIB"
/O2
$(crelease)
$(cflags)
/I
"..
\.
.
\i
nclude"
-DSTRICT
-YX
-DNODEBUG
/TP decoders.cc
encoders.obj
:
encoders.cc
$(cc)
/GR /D
"_LIB"
/O2
$(crelease)
$(cflags)
/I
"..
\.
.
\i
nclude"
-DSTRICT
-YX
-DNODEBUG
/TP encoders.cc
main.obj
:
main.cc
$(cc)
/GR /D
"_LIB"
/O2
$(crelease)
$(cflags)
/I
"..
\.
.
\i
nclude"
-DSTRICT
-YX
-DNODEBUG
/TP main.cc
test_libOggFLAC++.exe
:
$(C_OBJS) $(CC_OBJS)
link.exe /libpath:
"..
\.
.
\o
bj
\l
ib"
-out
:../../obj/bin/
$*
.exe
$(CC_OBJS)
$(C_OBJS)
libOggFLAC++.lib libOggFLAC.lib libFLAC.lib ogg_static.lib
test_libOggFLAC++.exe
:
$(C_OBJS) $(CPP_OBJS)
link.exe /libpath:
"..
\.
.
\o
bj
\l
ib"
-out
:../../obj/bin/
$*
.exe
$(CPP_OBJS)
$(C_OBJS)
libOggFLAC++.lib libOggFLAC.lib libFLAC.lib ogg_static.lib
clean
:
-
del
*
.obj
*
.pch
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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