blob: d4f5a5b1f6a7259b7b57a581c64695d002fd3734 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
NULL=
AM_CPPFLAGS=\
$(PACKAGE_CFLAGS) \
-g \
$(NULL)
bin_PROGRAMS = camorama
camorama_SOURCES = \
callbacks.c \
camorama-filter-chain.c \
camorama-filter-chain.h \
camorama-filter-laplace.c \
camorama-filter-mirror.c \
camorama-filter-reichardt.c \
camorama-globals.h \
camorama-stock-items.c \
camorama-stock-items.h \
camorama-window.c \
camorama-window.h \
filter.c \
glib-helpers.h \
main.c \
support.c \
v4l.c \
fileio.c \
v4l.h \
callbacks.h \
support.h \
interface.h \
fileio.h \
font_6x11.h \
filter.h \
$(BUILT_SOURCES)\
$(NULL)
camorama_LDADD = $(PACKAGE_LIBS) -lv4l2 -lm
DISTCLEANFILES=$(BUILT_SOURCES)
|