Commit c447c361 authored by diego's avatar diego

Add installlib and install-headers targets like everywhere else.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@4977 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent d7088d4f
......@@ -48,7 +48,7 @@ $(LIB): $(OBJS)
$(AR) rc $@ $(OBJS)
$(RANLIB) $@
install: all
install: all install-headers
ifeq ($(BUILD_SHARED),yes)
ifeq ($(CONFIG_WIN32),yes)
install $(INSTALLSTRIP) -m 755 $(SLIBNAME) "$(prefix)"
......@@ -63,6 +63,11 @@ else
$(LDCONFIG) || true
endif
endif
installlib: all install-headers
install -m 644 $(LIB) "$(libdir)"
install-headers:
mkdir -p $(prefix)/include/postproc
install -m 644 $(SRC_PATH)/libavcodec/libpostproc/postprocess.h $(prefix)/include/postproc/postprocess.h
install -d $(libdir)/pkgconfig
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment