diff options
author | hans@localhost.localdomain <hans@localhost.localdomain> | 2008-07-29 23:02:59 +0200 |
---|---|---|
committer | hans@localhost.localdomain <hans@localhost.localdomain> | 2008-07-29 23:02:59 +0200 |
commit | 55b3e527968b0644e7eaf3aae2b873249400b614 (patch) | |
tree | de200173976ced6eb1ac9952e3fad9cfc8250eba /v4l2-apps/lib/libv4l/libv4lconvert | |
parent | 46da27966fefda91510002ea939d6e901c86f1d7 (diff) | |
download | mediapointer-dvb-s2-55b3e527968b0644e7eaf3aae2b873249400b614.tar.gz mediapointer-dvb-s2-55b3e527968b0644e7eaf3aae2b873249400b614.tar.bz2 |
libv4l: add pkg-config (.pc) files for easier detection if libv4l is available
From: Hans de Goede <j.w.r.degoede@hhs.nl>
libv4l: add pkg-config (.pc) files for easier detection if libv4l is available
Signed-off-by: Hans de Goede <j.w.r.degoede@hhs.nl>
Diffstat (limited to 'v4l2-apps/lib/libv4l/libv4lconvert')
-rw-r--r-- | v4l2-apps/lib/libv4l/libv4lconvert/Makefile | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/v4l2-apps/lib/libv4l/libv4lconvert/Makefile b/v4l2-apps/lib/libv4l/libv4lconvert/Makefile index 38071de94..3fd561f4e 100644 --- a/v4l2-apps/lib/libv4l/libv4lconvert/Makefile +++ b/v4l2-apps/lib/libv4l/libv4lconvert/Makefile @@ -11,7 +11,7 @@ LDFLAGS = -shared CONVERT_LIB = libv4lconvert.so CONVERT_OBJS = libv4lconvert.o tinyjpeg.o sn9c10x.o pac207.o \ jidctflt.o spca561-decompress.o rgbyuv.o spca501.o bayer.o -TARGETS = $(CONVERT_LIB) +TARGETS = $(CONVERT_LIB) libv4lconvert.pc INCLUDES = ../include/libv4lconvert.h ifeq ($(LIB_RELEASE),) @@ -30,6 +30,16 @@ all: $(TARGETS) $(CONVERT_LIB): $(CONVERT_OBJS) +libv4lconvert.pc: + echo prefix=$(PREFIX) > libv4lconvert.pc + echo libdir=$(LIBDIR) >> libv4lconvert.pc + echo >> libv4lconvert.pc + echo 'Name: libv4lconvert' >> libv4lconvert.pc + echo 'Description: v4l format conversion library' >> libv4lconvert.pc + echo 'Version: '$(V4L2_LIB_VERSION) >> libv4lconvert.pc + echo 'Libs: -L$${libdir} -lv4lconvert' >> libv4lconvert.pc + echo 'Cflags: -I$${prefix}/include' >> libv4lconvert.pc + install: all mkdir -p $(DESTDIR)$(PREFIX)/include install -p -m 644 $(INCLUDES) $(DESTDIR)$(PREFIX)/include @@ -37,10 +47,11 @@ install: all install -m 755 $(CONVERT_LIB).$(LIB_RELEASE) $(DESTDIR)$(LIBDIR) cd $(DESTDIR)$(LIBDIR) && \ ln -f -s $(CONVERT_LIB).$(LIB_RELEASE) $(CONVERT_LIB) + mkdir -p $(DESTDIR)$(LIBDIR)/pkgconfig + install -m 644 libv4lconvert.pc $(DESTDIR)$(LIBDIR)/pkgconfig clean:: - rm -f *.so* *.o log *~ - rm -f *.d + rm -f *.so* *.o *.d libv4lconvert.pc log *~ %.o: %.c $(CC) -c -MMD $(CPPFLAGS) $(CFLAGS) -o $@ $< |