diff options
Diffstat (limited to 'v4l2-apps/lib/Makefile')
-rw-r--r-- | v4l2-apps/lib/Makefile | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/v4l2-apps/lib/Makefile b/v4l2-apps/lib/Makefile deleted file mode 100644 index f3f413071..000000000 --- a/v4l2-apps/lib/Makefile +++ /dev/null @@ -1,33 +0,0 @@ -# Makefile for linuxtv.org v4l2-apps/lib - -CPPFLAGS += -I../include -I.. - -includes = libv4l2util.h - -objects = frequencies.o v4l2_driver.o - -sharedlib = libv4l2util.so -staticlib = libv4l2util.a - -ifeq ($(prefix),) -prefix = /usr -endif - -.PHONY: all clean install - -all: $(sharedlib) $(staticlib) - -$(sharedlib): $(objects) - -$(staticlib): $(objects) - -clean:: - rm -f $(objects) $(sharedlib) $(staticlib) - -install: - mkdir -p $(prefix)/include - cp $(includes) $(prefix)/include - mkdir -p $(prefix)/lib - cp $(sharedlib) $(staticlib) $(prefix)/lib - -include ../Make.rules |