blob: 00af01eeda19cd65ef705f9cf8f571576141c097 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
--- imx-vpu-3.10.17-1.0.0.orig/vpu/Makefile 2014-01-16 15:27:33.000000000 +0100
+++ imx-vpu-3.10.17-1.0.0/vpu/Makefile 2015-10-08 18:46:28.302097835 +0200
@@ -21,22 +21,22 @@ endif
all: $(LIBNAME).so $(LIBNAME).a
install: install_headers
- @mkdir -p $(DEST_DIR)/usr/lib
- cp -P $(LIBNAME).* $(DEST_DIR)/usr/lib
+ @mkdir -p $(DESTDIR)/usr/lib
+ cp -P $(LIBNAME).* $(DESTDIR)/usr/lib
install_headers:
- @mkdir -p $(DEST_DIR)/usr/include
- cp vpu_lib.h $(DEST_DIR)/usr/include
- cp vpu_io.h $(DEST_DIR)/usr/include
+ @mkdir -p $(DESTDIR)/usr/include
+ cp vpu_lib.h $(DESTDIR)/usr/include
+ cp vpu_io.h $(DESTDIR)/usr/include
else
all install :
endif
%.o: %.c
- $(CC) -D$(PLATFORM) -Wall -O2 -fPIC -c $^ -o $@
+ $(CC) -D$(PLATFORM) $(CFLAGS) -fPIC -c $^ -o $@
$(LIBNAME).so.$(SONAMEVERSION): $(OBJ)
- $(CC) -shared -nostartfiles -Wl,-soname,$@ $^ -o $@ -lpthread
+ $(CC) $(CFLAGS) -shared -nostartfiles -Wl,-soname,$@ $^ -o $@ -lpthread
$(LIBNAME).so: $(LIBNAME).so.$(SONAMEVERSION)
ln -s $< $@
|