summaryrefslogtreecommitdiff
path: root/lib/Makefile
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2014-11-18 22:52:06 +0200
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2016-05-24 03:03:01 +0300
commitc9601d407a7ca943e53fa49a5a5f69b868c6ed11 (patch)
tree248d13a9e817ba3c73fc50e2d655b4cd12013e10 /lib/Makefile
parent3653f5e4d877176a30035d9123ac65daf46ba787 (diff)
Xilinx video library - Initial importHEADmaster
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'lib/Makefile')
-rw-r--r--lib/Makefile26
1 files changed, 26 insertions, 0 deletions
diff --git a/lib/Makefile b/lib/Makefile
new file mode 100644
index 0000000..cb91e0e
--- /dev/null
+++ b/lib/Makefile
@@ -0,0 +1,26 @@
+AR := $(CROSS_COMPILE)ar
+CC := $(CROSS_COMPILE)gcc
+CFLAGS := -O2 -W -Wall -Wno-unused-parameter -I$(KDIR)/usr/include -I$(topdir)/3rdparty/media-ctl/include -I$(topdir)/3rdparty/media-enum/include -I$(topdir)/include -I. -fPIC
+LDFLAGS := -L$(topdir)/3rdparty/media-ctl -L$(topdir)/3rdparty/media-enum
+LIBS := -lmediaenum -lmediactl -ldl
+
+OBJECTS := xlnx-buffers.o \
+ xlnx-events.o \
+ xlnx-plugin.o \
+ xlnx-video.o
+
+TARGET := libxlnxvideo.so
+
+all: $(TARGET)
+
+$(TARGET): $(OBJECTS)
+ $(CC) -o $@ -shared $^ $(LDFLAGS) $(LIBS)
+
+%.o : %.c
+ $(CC) $(CFLAGS) -c -o $@ $<
+
+clean:
+ -$(RM) *.o
+ -$(RM) $(TARGET)
+
+install: