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

« back to all changes in this revision

Viewing changes to oct612x/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Mark Purcell
  • Date: 2006-10-24 22:41:01 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20061024224101-464p4n2jk16n1jrh
Tags: 1:1.2.10.dfsg-2
* bristuff-0.3.0-PRE-1v
* Remove redundant GPL LICENCE text

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
CFLAGS=-V3.4 -ffunction-sections -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)