aboutsummaryrefslogtreecommitdiffstats
path: root/dvb-t/fr-Annecy
blob: 02da6a394e061e7455ecdff04ed40397c5294900 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Annecy - France (DVB-T transmitter of Annecy ( Agglomération ) )
# Annecy - France (signal DVB-T transmis depuis l'émetteur de Agglomération )
#
# ATTENTION ! Ce fichier a ete construit automatiquement a partir
# des frequences obtenues sur : http://www.tvnt.net/multiplex_frequences.htm
# en Avril 2006. Si vous constatez des problemes et voulez apporter des
# modifications au fichier, envoyez le fichier modifie a
# l'adresse linux-dvb@linuxtv.org (depot des fichiers d'init dvb)
# ou a l'auteur du fichier :
# Nicolas Estre <n_estre@yahoo.fr>
#
# T freq bw fec_hi fec_lo mod transmission-mode guard-interval hierarchy
#### Annecy - Agglomération ####
#R1
T 642000000 8MHz AUTO NONE QAM64 8k AUTO NONE
#R2
T 482000000 8MHz AUTO NONE QAM64 8k AUTO NONE
#R3
T 530000000 8MHz AUTO NONE QAM64 8k AUTO NONE
#R4
T 666000000 8MHz AUTO NONE QAM64 8k AUTO NONE
#R5
T 506000000 8MHz AUTO NONE QAM64 8k AUTO NONE
#R6
T 834000000 8MHz AUTO NONE QAM64 8k AUTO NONE
ng.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
# build rules for linuxtv.org dvb-apps

CFLAGS ?= -g -Wall -W -Wshadow -Wpointer-arith -Wstrict-prototypes

ifneq ($(lib_name),)

# additional rules for libraries

CFLAGS_LIB ?= -fPIC
CFLAGS += $(CFLAGS_LIB)

libraries = $(lib_name).so $(lib_name).a

.PHONY: library

library: $(libraries)

$(libraries): $(objects)

endif

prerequisites = $(subst .o,.d,$(objects)) $(addsuffix .d,$(binaries))

.PHONY: clean install

ifeq ($(static),1)
LDFLAGS += -static
endif

prefix ?= /usr

bindir     ?= $(prefix)/bin
includedir ?= $(prefix)/include
libdir     ?= $(prefix)/lib
sharedir   ?= $(prefix)/share

ifneq ($(DESTDIR),)
DESTDIR = $(DESTDIR)/
endif

ifeq ($(V),1)
%.o: %.c
	$(CC) -c $(CPPFLAGS) $(CFLAGS) -MMD -o $@ $< $(filter-out %.h %.c,$^)
%: %.o
	$(CC) $(LDFLAGS) -o $@ $^ $(LOADLIBES) $(LDLIBS)
%: %.c
	$(CC) $(CPPFLAGS) $(CFLAGS) -MMD $(LDFLAGS) -o $@ $< $(filter-out %.h %.c,$^) $(LOADLIBES) $(LDLIBS)
%.so:
	$(CC) -shared -o $@ $^
%.a:
	$(AR) rcs $@ $^
clean::
	$(RM) -f $(prerequisites) $(objects) $(libraries) $(binaries) $(removing) *~
install::
ifneq ($(includes),)
	mkdir -p $(DESTDIR)$(includedir)/$(lib_name)
	install -m 644 $(includes) $(DESTDIR)$(includedir)/$(lib_name)/
endif
ifneq ($(libraries),)
	mkdir -p $(DESTDIR)$(libdir)
	install -m 644 $(libraries) $(DESTDIR)$(libdir)/
endif
ifneq ($(inst_bin),)
	mkdir -p $(DESTDIR)$(bindir)
	install -m 755 $(inst_bin) $(DESTDIR)$(bindir)/
endif
else
%.o: %.c
	@echo CC $@
	@$(CC) -c $(CPPFLAGS) $(CFLAGS) -MMD -o $@ $< $(filter-out %.h %.c,$^)
%: %.o
	@echo CC $@
	@$(CC) $(LDFLAGS) -o $@ $^ $(LOADLIBES) $(LDLIBS)
%: %.c
	@echo CC $@
	@$(CC) $(CPPFLAGS) $(CFLAGS) -MMD $(LDFLAGS) -o $@ $< $(filter-out %.h %.c,$^) $(LOADLIBES) $(LDLIBS)
%.so:
	@echo CC $@
	@$(CC) -shared -o $@ $^
%.a:
	@echo AR $@
	@$(AR) rcs $@ $^
clean::
	@echo cleaning
	@$(RM) -f $(prerequisites) $(objects) $(libraries) $(binaries) $(removing) *~
install::
ifneq ($(includes),)
	@echo installing headers
	@mkdir -p $(DESTDIR)$(includedir)/$(lib_name)
	@install -m 644 $(includes) $(DESTDIR)$(includedir)/$(lib_name)/
endif
ifneq ($(libraries),)
	@echo installing libraries
	@mkdir -p $(DESTDIR)$(libdir)
	@install -m 644 $(libraries) $(DESTDIR)$(libdir)/
endif
ifneq ($(inst_bin),)
	@echo installing binaries
	@mkdir -p $(DESTDIR)$(bindir)
	@install -m 755 $(inst_bin) $(DESTDIR)$(bindir)/
endif
endif

-include $(prerequisites)