summaryrefslogtreecommitdiff
path: root/v4l2-apps/libv4l/libv4l1/Makefile
blob: e6d306055645a54e3b1fde8f145b556e37f8c8f5 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
override CPPFLAGS += -I../include -I../../../include -fvisibility=hidden

CFLAGS := -g -O1
CFLAGS += -Wall -Wno-unused -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes

LIBS_libv4l1  = -lpthread

V4L1_OBJS     = libv4l1.o log.o
V4L1COMPAT    = v4l1compat.so
V4L1COMPAT_O  = v4l1compat.o libv4l1.so
TARGETS       = $(V4L1_LIB) libv4l1.pc
INCLUDES      = ../include/libv4l1.h

ifeq ($(LINKTYPE),static)
V4L1_LIB      = libv4l1.a
V4L1_DEPS     = $(V4L1_OBJS)
else
V4L1_LIB      = libv4l1.so
V4L1_DEPS    += $(V4L1_OBJS) ../libv4l2/libv4l2.so
TARGETS      += $(V4L1COMPAT)
override CPPFLAGS += -fPIC
endif

ifeq ($(LIB_RELEASE),)
LIB_RELEASE = 0
endif

ifeq ($(PREFIX),)
PREFIX = /usr/local
endif

ifeq ($(LIBDIR),)
LIBDIR = $(PREFIX)/lib
endif

all: $(TARGETS)

-include $(V4L1_OBJS:.o=.d)

$(V4L1_LIB): $(V4L1_DEPS)

$(V4L1COMPAT): $(V4L1COMPAT_O) $(V4L1_LIB)

libv4l1.pc:
	@echo prefix=$(PREFIX) > libv4l1.pc
	@echo libdir=$(LIBDIR) >> libv4l1.pc
	@echo >> libv4l1.pc
	@echo 'Name: libv4l1' >> libv4l1.pc
	@echo 'Description: v4l1 compatibility library' >> libv4l1.pc
	@echo 'Version: '$(V4L2_LIB_VERSION) >> libv4l1.pc
	@echo 'Requires.private: libv4l2' >> libv4l1.pc
	@echo 'Libs: -L$${libdir} -lv4l1' >> libv4l1.pc
	@echo 'Libs.private: -lpthread' >> libv4l1.pc
	@echo 'Cflags: -I$${prefix}/include' >> libv4l1.pc

install: all
	mkdir -p $(DESTDIR)$(PREFIX)/include
	install -p -m 644 $(INCLUDES) $(DESTDIR)$(PREFIX)/include
ifeq ($(LINKTYPE),static)
	mkdir -p $(DESTDIR)$(LIBDIR)
	install -m 644 $(V4L1_LIB) $(DESTDIR)$(LIBDIR)
else
	mkdir -p $(DESTDIR)$(LIBDIR)/libv4l
	install -m 755 $(V4L1_LIB).$(LIB_RELEASE) $(DESTDIR)$(LIBDIR)
	cd $(DESTDIR)$(LIBDIR) && \
	  ln -f -s $(V4L1_LIB).$(LIB_RELEASE) $(V4L1_LIB)
	install -m 755 $(V4L1COMPAT).$(LIB_RELEASE) \
	  $(DESTDIR)$(LIBDIR)/libv4l/$(V4L1COMPAT)
endif
	mkdir -p $(DESTDIR)$(LIBDIR)/pkgconfig
	install -m 644 libv4l1.pc $(DESTDIR)$(LIBDIR)/pkgconfig

clean::
	rm -f *.a *.so* *.o *.d libv4l1.pc log *~ *.orig *.rej DEADJOE

%.o: %.c
	$(CC) -Wp,-MMD,"$*.d",-MQ,"$@",-MP -c $(CPPFLAGS) $(CFLAGS) -o $@ $<

%.so:
	$(CC) -shared $(LDFLAGS) -Wl,-soname,$@.$(LIB_RELEASE) -o $@.$(LIB_RELEASE) $^ $(LIBS_$*)
	ln -f -s $@.$(LIB_RELEASE) $@

%.a:
	$(AR) cqs $@ $^