blob: d15828ed3f4d13907a85daa743f94f9edf990f6a [file] [log] [blame]
Josh Coalsona86f8702002-08-20 04:03:24 +00001# test_libOggFLAC - Unit tester for libOggFLAC
Josh Coalsonafae69f2003-01-02 07:03:16 +00002# Copyright (C) 2002,2003 Josh Coalson
Josh Coalsona86f8702002-08-20 04:03:24 +00003#
4# This program is free software; you can redistribute it and/or
5# modify it under the terms of the GNU General Public License
6# as published by the Free Software Foundation; either version 2
7# of the License, or (at your option) any later version.
8#
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
13#
14# You should have received a copy of the GNU General Public License
15# along with this program; if not, write to the Free Software
16# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17
18!include <win32.mak>
19
20!IFDEF DEBUG
21.c.obj:
Josh Coalson4c2676a2003-01-02 07:23:55 +000022 $(cc) -DFLAC__NO_DLL $(cdebug) $(cflags) /I "..\..\include" /I ".\include" -DSTRICT -DVERSION=\"1.0.5-beta1\" -YX /Od /D "_DEBUG" $<
Josh Coalsona86f8702002-08-20 04:03:24 +000023!else
24.c.obj:
Josh Coalson4c2676a2003-01-02 07:23:55 +000025 $(cc) -DFLAC__NO_DLL /O2 $(crelease) $(cflags) /I "..\..\include" /I ".\include" -DSTRICT -DVERSION=\"1.0.5-beta1\" -YX -DNODEBUG $<
Josh Coalsona86f8702002-08-20 04:03:24 +000026!endif
27
28C_FILES= \
29 decoders.c \
30 encoders.c \
31 file_utils.c \
32 main.c \
33 metadata_utils.c
34
35OBJS= $(C_FILES:.c=.obj)
36
37all: test_libOggFLAC.exe
38
39test_libOggFLAC.exe: $(OBJS)
Josh Coalson44ca9fe2002-12-04 06:57:38 +000040 link.exe /libpath:"..\..\obj\release\lib" -out:../../obj/release/bin/$*.exe $(OBJS) grabbag_static.lib gain_analysis_static.lib libOggFLAC_static.lib libFLAC_static.lib ogg_static.lib
Josh Coalsona86f8702002-08-20 04:03:24 +000041
42clean:
43 -del *.obj *.pch
Josh Coalsonfcc7a682002-11-22 07:50:26 +000044 -del ..\..\obj\release\bin\test_libOggFLAC.exe