grapes / src / Chunkiser / Makefile @ 91e9c5d5
History | View | Annotate | Download (348 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 input-stream-dummy.o output-stream-raw.o output-stream.o |
9 |
|
10 |
ifdef FFDIR |
11 |
OBJS += input-stream-avf.o output-stream-avf.o |
12 |
endif |
13 |
|
14 |
all: libchunkiser.a |
15 |
|
16 |
include $(BASE)/src/utils.mak |
17 |
ifdef FFDIR |
18 |
CPPFLAGS += -I$(FFDIR) |
19 |
CPPFLAGS += -DAVF |
20 |
endif |