blob: e9502d0a0760f67193f3b34c8ead3d36b7089568 [file] [log] [blame]
Josh Coalson6b05bc52001-06-08 00:13:21 +00001# test_streams - Simple test pattern generator
Erik de Castro Lopob1982fb2013-05-25 17:11:19 +10002# Copyright (C) 2000-2009 Josh Coalson
3# Copyright (C) 2011-2013 Xiph.Org Foundation
Josh Coalsoncd66fc02001-06-18 02:34:09 +00004#
Josh Coalson6b05bc52001-06-08 00:13:21 +00005# This program is free software; you can redistribute it and/or
6# modify it under the terms of the GNU General Public License
7# as published by the Free Software Foundation; either version 2
8# of the License, or (at your option) any later version.
Josh Coalsoncd66fc02001-06-18 02:34:09 +00009#
Josh Coalson6b05bc52001-06-08 00:13:21 +000010# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU General Public License for more details.
Josh Coalsoncd66fc02001-06-18 02:34:09 +000014#
Miroslav Lichvar6a1f59b2012-12-04 17:36:05 +010015# You should have received a copy of the GNU General Public License along
16# with this program; if not, write to the Free Software Foundation, Inc.,
17# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Josh Coalson6b05bc52001-06-08 00:13:21 +000018
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000019#
20# GNU makefile
21#
22
Josh Coalsoncd0e3222002-10-23 22:08:13 +000023topdir = ../..
Erik de Castro Lopo85d5c532013-01-02 22:37:42 +110024libdir = $(topdir)/objs/$(BUILD)/lib
Josh Coalsoncd0e3222002-10-23 22:08:13 +000025
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000026PROGRAM_NAME = test_streams
Josh Coalson2757af62004-10-30 00:03:21 +000027
28INCLUDES = -I./include -I$(topdir)/include
29
30LIBS = -lm
31
Josh Coalsonb74fc982002-11-20 06:40:08 +000032SRCS_C = \
33 main.c
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000034
Josh Coalsoncd0e3222002-10-23 22:08:13 +000035include $(topdir)/build/exe.mk
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000036
37# DO NOT DELETE THIS LINE -- make depend depends on it.