diff options
| author | etobi <git@e-tobi.net> | 2013-09-03 09:48:41 +0200 | 
|---|---|---|
| committer | etobi <git@e-tobi.net> | 2013-09-03 09:48:41 +0200 | 
| commit | ab959d7b4194715870128e616b8e29d4a101e488 (patch) | |
| tree | 61a746231d30817be73416a7d67763fd677a1042 /test/Makefile | |
| parent | 6b350466c4902c5b137e0efaf1d189128a7f18f5 (diff) | |
| download | linux-dvb-apps-ab959d7b4194715870128e616b8e29d4a101e488.tar.gz | |
Imported Upstream version 1.1.1+rev1207upstream/1.1.1+rev1207
Diffstat (limited to 'test/Makefile')
| -rw-r--r-- | test/Makefile | 64 | 
1 files changed, 34 insertions, 30 deletions
| diff --git a/test/Makefile b/test/Makefile index ddff9ab..30cb9e3 100644 --- a/test/Makefile +++ b/test/Makefile @@ -1,37 +1,41 @@ -# Makefile for Linux DVB API Version 3 test programs +# Makefile for linuxtv.org dvb-apps/test -CC = gcc -CFLAGS = -g -O2 -W -Wall -I../include +objects  = hex_dump.o lnb.o -TARGETS = \ -	diseqc		\ -	set22k		\ -	sendburst	\ -	setvoltage	\ -	setpid		\ -	video		\ -	test_sections	\ -	test_sec_ne	\ -	test_pes	\ -	test_dvr	\ -	test_dvr_play	\ -	test_tt		\ -	test_av		\ -	test_av_play	\ -	test_vevent	\ -	test_stc	\ -	test_stillimage +binaries = diseqc          \ +           sendburst       \ +           set22k          \ +           setpid          \ +           setvoltage      \ +           test_av         \ +           test_av_play    \ +           test_dvr        \ +           test_dvr_play   \ +           test_pes        \ +           test_sec_ne     \ +           test_sections   \ +           test_stc        \ +           test_stillimage \ +           test_tt         \ +           test_vevent     \ +	   evtest	   \ +	   video	   \ +	   szap2 -#	test		\ -#	test_audio	\ -#	test_front	\ -#	test_switch	\ -#	test_video	\ +.PHONY: all -all: $(TARGETS) +all: $(binaries) +	make -C libdvbcfg $@ +	make -C libdvben50221 $@ +	make -C libesg $@ +	make -C libucsi $@ -test_sections test_sec_ne test_pes test_tt: hex_dump.o +$(binaries): $(objects) -clean: -	rm -f $(TARGETS) *.o +clean:: +	make -C libdvbcfg $@ +	make -C libdvben50221 $@ +	make -C libesg $@ +	make -C libucsi $@ +include ../Make.rules | 
