From 97c71acb56c0d422f8d44cebba3b6ecd9c94ab5f Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Tue, 13 Oct 2015 01:48:06 +0300 Subject: Add support for static compilation Signed-off-by: Laurent Pinchart --- isp/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'isp/Makefile') diff --git a/isp/Makefile b/isp/Makefile index 6521a95..5619ca6 100644 --- a/isp/Makefile +++ b/isp/Makefile @@ -14,7 +14,10 @@ OBJECTS := controls.o \ %.o : %.c $(CC) $(CFLAGS) -c -o $@ $< -all: libomap3isp.so +all: libomap3isp.a libomap3isp.so + +libomap3isp.a: $(OBJECTS) + $(AR) r $@ $^ libomap3isp.so: $(OBJECTS) $(CC) -o $@ -shared $^ -- cgit v1.2.3