summaryrefslogtreecommitdiff
path: root/src/test_libFLAC/Makefile.lite
diff options
context:
space:
mode:
authorJosh Coalson <jcoalson@users.sourceforce.net>2002-06-07 05:54:21 +0000
committerJosh Coalson <jcoalson@users.sourceforce.net>2002-06-07 05:54:21 +0000
commit7d21785223d00cd4417c766164509cef24124c97 (patch)
tree45d5f409b46c0dd30166330301f80e76e8e8db94 /src/test_libFLAC/Makefile.lite
parentbd1d9b9eeef171e0edfdd6d48af4f02af9c4f139 (diff)
downloadflac-7d21785223d00cd4417c766164509cef24124c97.tar.gz
rename directory test_unit to test_libFLAC
Diffstat (limited to 'src/test_libFLAC/Makefile.lite')
-rw-r--r--src/test_libFLAC/Makefile.lite38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/test_libFLAC/Makefile.lite b/src/test_libFLAC/Makefile.lite
new file mode 100644
index 00000000..f348b150
--- /dev/null
+++ b/src/test_libFLAC/Makefile.lite
@@ -0,0 +1,38 @@
+# test_libFLAC - Unit tester for libFLAC
+# Copyright (C) 2000,2001,2002 Josh Coalson
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program 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 General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+#
+# GNU makefile
+#
+
+PROGRAM_NAME = test_libFLAC
+INCLUDES = -I../libFLAC/include -I../../include
+LIBS = -lFLAC -lm
+OBJS = \
+ bitbuffer.o \
+ decoders.o \
+ encoders.o \
+ file_utils.o \
+ main.o \
+ metadata.o \
+ metadata_manip.o \
+ metadata_object.o \
+ metadata_utils.o
+
+include ../../build/exe.mk
+
+# DO NOT DELETE THIS LINE -- make depend depends on it.