mirror of
https://github.com/claunia/flac.git
synced 2025-12-16 18:54:26 +00:00
51 lines
1.8 KiB
Makefile
51 lines
1.8 KiB
Makefile
# libOggFLAC++ - Free Lossless Audio Codec + Ogg library
|
|
# Copyright (C) 2002 Josh Coalson
|
|
#
|
|
# This library is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU Library General Public
|
|
# License as published by the Free Software Foundation; either
|
|
# version 2 of the License, or (at your option) any later version.
|
|
#
|
|
# This library is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
# Library General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Library General Public
|
|
# License along with this library; if not, write to the
|
|
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
# Boston, MA 02111-1307, USA.
|
|
|
|
!include <win32.mak>
|
|
|
|
SUFFIXES = .cc
|
|
|
|
!IFDEF DEBUG
|
|
.cc.obj:
|
|
$(cc) /D "_LIB" /GX /GR $(cdebug) $(cflags) /I "..\..\include" -DSTRICT -YX /Od /D "_DEBUG" $<
|
|
!else
|
|
.cc.obj:
|
|
$(cc) /D "_LIB" /O2 /GR $(crelease) $(cflags) /I "..\..\include" -DSTRICT -YX -DNODEBUG $<
|
|
!endif
|
|
|
|
CC_FILES= \
|
|
stream_decoder.cc \
|
|
stream_encoder.cc
|
|
|
|
OBJS= $(CC_FILES:.cc=.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 "..\..\include" -DSTRICT -YX -DNODEBUG /TP stream_decoder.cc
|
|
stream_encoder.obj: stream_encoder.cc
|
|
$(cc) /D "_LIB" /O2 /GR $(crelease) $(cflags) /I "..\..\include" -DSTRICT -YX -DNODEBUG /TP stream_encoder.cc
|
|
|
|
clean:
|
|
-del *.obj *.pch
|
|
-del ..\..\obj\lib\libOggFLAC++.lib ..\..\obj\lib\libOggFLAC++.pdb
|