diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2009-02-13 12:56:07 +0100 |
---|---|---|
committer | Hans Verkuil <hverkuil@xs4all.nl> | 2009-02-13 12:56:07 +0100 |
commit | d9fcd7e5495fbd0fe020223823338d21ce31dcaf (patch) | |
tree | b940ae37e5d028fb136c13ed1b2f859f2ec3f5f2 /v4l2-apps/test/Makefile | |
parent | 404ee5d5dea9be4f51d5a436a2a33a00e47be1ed (diff) | |
download | mediapointer-dvb-s2-d9fcd7e5495fbd0fe020223823338d21ce31dcaf.tar.gz mediapointer-dvb-s2-d9fcd7e5495fbd0fe020223823338d21ce31dcaf.tar.bz2 |
libv4l2util: rename from libv4l2 to prevent clash with the libv4l2 conversion library
From: Hans Verkuil <hverkuil@xs4all.nl>
libv4l2 was introduced to fix conversion problems. But this clashed with
the already existing libv4l2 utility library. Renamed that libv4l2 library
and header to libv4l2util.
Priority: normal
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Diffstat (limited to 'v4l2-apps/test/Makefile')
-rw-r--r-- | v4l2-apps/test/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/v4l2-apps/test/Makefile b/v4l2-apps/test/Makefile index a996c0baf..e3879bc5e 100644 --- a/v4l2-apps/test/Makefile +++ b/v4l2-apps/test/Makefile @@ -21,10 +21,10 @@ clean:: install: -../lib/libv4l2.a: ../lib/v4l2_driver.c ../lib/frequencies.c - make -C ../lib libv4l2.a +../lib/libv4l2util.a: ../lib/v4l2_driver.c ../lib/frequencies.c + make -C ../lib libv4l2util.a -driver-test: driver-test.o ../lib/libv4l2.a +driver-test: driver-test.o ../lib/libv4l2util.a pixfmt-test: pixfmt-test.o $(CC) $(LDFLAGS) $^ $(LOADLIBES) $(LDLIBS) -o $@ -lX11 |