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