From febcb53ca85d911619456c09c4be49fd73c4964b Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Sat, 30 Jul 2011 14:33:37 +0200 Subject: omap3-isp-live: Initial commit Signed-off-by: Laurent Pinchart --- isp/Makefile | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 isp/Makefile (limited to 'isp/Makefile') diff --git a/isp/Makefile b/isp/Makefile new file mode 100644 index 0000000..4b47ee6 --- /dev/null +++ b/isp/Makefile @@ -0,0 +1,24 @@ +AR := $(CROSS_COMPILE)ar +CC := $(CROSS_COMPILE)gcc +CFLAGS := -O2 -W -Wall -I$(KDIR)/usr/include -fPIC +LDFLAGS := + +OBJECTS := controls.o \ + media.o \ + omap3isp.o \ + subdev.o \ + v4l2.o \ + v4l2-pool.o + +%.o : %.c + $(CC) $(CFLAGS) -c -o $@ $< + +all: libomap3isp.so + +libomap3isp.so: $(OBJECTS) + $(CC) -o $@ -shared $^ + +clean: + -$(RM) *.o + -$(RM) libomap3isp.so + -- cgit v1.2.3