# Makefile for Linux DVB API Version 2 test programs

CC = gcc
CFLAGS = -g -O1 -W -Wall -I../../include

TARGETS = \
	diseqc		\
	set22k		\
	sendburst	\
	setvoltage	\
	setpid		\
	video		\
	test_sections	\
	test_sec_ne	\
	test_pes	\
	test_tt		\
	test_av		\
	test_stc	\
	test_stillimage

#	test_av_play
#	test		\
#	test_audio	\
#	test_dmx	\
#	test_dvr	\
#	test_front	\
#	test_switch	\
#	test_video	\

all: $(TARGETS)

test_sections test_sec_ne test_pes test_tt: hex_dump.o

clean:
	rm -f $(TARGETS) *.o

