~ubuntu-branches/ubuntu/quantal/zaptel/quantal

« back to all changes in this revision

Viewing changes to kernel/oct612x/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Tzafrir Cohen
  • Date: 2008-08-28 22:58:23 UTC
  • mfrom: (11.1.11 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080828225823-r8bdunirm8hmc76m
Tags: 1:1.4.11~dfsg-2
* Patch xpp_fxs_power: Fixed an issue with hook detection of the Astribank
  FXS module.
* Don't fail init.d script if fxotune fails. This may happen if running it
  when Asterisk is already running.
* Bump standards version to 3.8.0.0 .
* Ignore false lintian warning ("m-a a-i" has "a a").
* Patch xpp_fxo_cid_always: do always pass PCM if that's what the user
  asked.
* Patch vzaphfc_proc_root_dir: fix vzaphfc on 2.6.26.
* Patch wcte12xp_flags: Proper time for irq save flags.
* Patch headers_2627: Fix location of semaphore.h for 2.6.27 .
* Patch xpp_fxs_dtmf_leak: Don't play DTMFs to the wrong channel.
* Patch wctdm_fix_alarm: Fix sending channel alarms.
* Patch device_class_2626: Fix building 2.6.26 (Closes: #493397).
* Using dh_lintian for lintian overrides, hence requiring debhelper 6.0.7.
* Lintian: we know we have direct changes. Too bad we're half-upstream :-(
* Fix doc-base section names. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
CFLAGS=-V3.4 -ffunction-sections -I/lib/modules/$(shell uname -r)/build/include -Iinclude -Ioctdeviceapi -Ioctdeviceapi/oct6100api -DGFP_ATOMIC=0 -Dkmalloc=calloc -Dkfree=free
 
2
LDFLAGS=-V3.4 -Wl,-Map -Wl,test.map -Wl,--gc-sections
 
3
 
 
4
APIDIR=octdeviceapi/oct6100api/oct6100_api
 
5
 
 
6
OCTASIC_OBJS=$(APIDIR)/oct6100_adpcm_chan.o \
 
7
            $(APIDIR)/oct6100_channel.o \
 
8
            $(APIDIR)/oct6100_chip_open.o \
 
9
            $(APIDIR)/oct6100_chip_stats.o \
 
10
            $(APIDIR)/oct6100_conf_bridge.o \
 
11
            $(APIDIR)/oct6100_debug.o \
 
12
            $(APIDIR)/oct6100_events.o \
 
13
            $(APIDIR)/oct6100_interrupts.o \
 
14
            $(APIDIR)/oct6100_memory.o \
 
15
            $(APIDIR)/oct6100_miscellaneous.o \
 
16
            $(APIDIR)/oct6100_mixer.o \
 
17
            $(APIDIR)/oct6100_phasing_tsst.o \
 
18
            $(APIDIR)/oct6100_playout_buf.o \
 
19
            $(APIDIR)/oct6100_remote_debug.o \
 
20
            $(APIDIR)/oct6100_tlv.o \
 
21
            $(APIDIR)/oct6100_tone_detection.o \
 
22
            $(APIDIR)/oct6100_tsi_cnct.o \
 
23
            $(APIDIR)/oct6100_tsst.o \
 
24
            $(APIDIR)/oct6100_user.o \
 
25
            apilib/bt/octapi_bt0.o \
 
26
            apilib/largmath/octapi_largmath.o \
 
27
            apilib/llman/octapi_llman.o
 
28
 
 
29
 
 
30
all: test
 
31
 
 
32
test.o: test.c
 
33
 
 
34
test: test.o $(OCTASIC_OBJS)
 
35
 
 
36
clean:
 
37
        rm -rf test test.o
 
38
        rm -rf $(OCTASIC_OBJS)