grapes / src / Chunkiser / Makefile @ 59e03a8f
History | View | Annotate | Download (609 Bytes)
1 | 1e8dedd8 | Luca Abeni | ifndef BASE |
---|---|---|---|
2 | BASE = ../.. |
||
3 | else |
||
4 | vpath %.c $(BASE)/src/$(notdir $(CURDIR)) |
||
5 | endif |
||
6 | CFGDIR ?= .. |
||
7 | |||
8 | fe510b09 | Luca Abeni | OBJS = input-stream.o \ |
9 | input-stream-dummy.o \ |
||
10 | input-stream-dumb.o \ |
||
11 | f31ebd3b | Luca Abeni | input-stream-ts.o \ |
12 | fe510b09 | Luca Abeni | input-stream-udp.o \ |
13 | output-stream.o \ |
||
14 | output-stream-raw.o \ |
||
15 | 9e5d52d5 | Luca Abeni | output-stream-udp.o \ |
16 | output-stream-dummy.o |
||
17 | c0c735aa | Luca Abeni | |
18 | 1e8dedd8 | Luca Abeni | ifdef FFDIR |
19 | 59e03a8f | Csaba Kiraly | OBJS += input-stream-avf.o input-stream-ipb.o output-stream-avf.o chunkiser_attrib.o |
20 | 1e8dedd8 | Luca Abeni | endif |
21 | |||
22 | all: libchunkiser.a |
||
23 | |||
24 | include $(BASE)/src/utils.mak |
||
25 | c0c735aa | Luca Abeni | ifdef FFDIR |
26 | 1e8dedd8 | Luca Abeni | CPPFLAGS += -I$(FFDIR) |
27 | 89aef955 | Luca Abeni | CPPFLAGS += -DAVF |
28 | c0c735aa | Luca Abeni | endif |