mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
Separate header file installation from the general install target.
Originally committed as revision 4981 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
5e43b17e7c
commit
f29f3b5d9f
7
Makefile
7
Makefile
@ -108,7 +108,7 @@ documentation:
|
||||
|
||||
.PHONY: install
|
||||
|
||||
install: all install-progs install-man $(INSTALLVHOOK)
|
||||
install: all install-progs install-headers install-man $(INSTALLVHOOK)
|
||||
$(MAKE) -C libavutil install
|
||||
$(MAKE) -C libavcodec install
|
||||
$(MAKE) -C libavformat install
|
||||
@ -138,6 +138,11 @@ installlib:
|
||||
$(MAKE) -C libavcodec installlib
|
||||
$(MAKE) -C libavformat installlib
|
||||
|
||||
install-headers:
|
||||
$(MAKE) -C libavutil install-headers
|
||||
$(MAKE) -C libavcodec install-headers
|
||||
$(MAKE) -C libavformat install-headers
|
||||
|
||||
dep: depend
|
||||
|
||||
depend: .depend
|
||||
|
@ -503,7 +503,7 @@ fft-test: fft-test.o $(LIB)
|
||||
$(CC) -o $@ $^ $(LIBAVUTIL) -lm
|
||||
|
||||
ifeq ($(BUILD_SHARED),yes)
|
||||
install: all install-headers
|
||||
install: all
|
||||
ifeq ($(CONFIG_WIN32),yes)
|
||||
install $(INSTALLSTRIP) -m 755 $(SLIBNAME) "$(prefix)"
|
||||
else
|
||||
@ -523,7 +523,7 @@ else
|
||||
install:
|
||||
endif
|
||||
|
||||
installlib: all install-headers
|
||||
installlib: all
|
||||
install -m 644 $(LIB) "$(libdir)"
|
||||
ifeq ($(CONFIG_PP),yes)
|
||||
$(MAKE) -C libpostproc $@
|
||||
|
@ -48,7 +48,7 @@ $(LIB): $(OBJS)
|
||||
$(AR) rc $@ $(OBJS)
|
||||
$(RANLIB) $@
|
||||
|
||||
install: all install-headers
|
||||
install: all
|
||||
ifeq ($(BUILD_SHARED),yes)
|
||||
ifeq ($(CONFIG_WIN32),yes)
|
||||
install $(INSTALLSTRIP) -m 755 $(SLIBNAME) "$(prefix)"
|
||||
@ -64,7 +64,7 @@ else
|
||||
endif
|
||||
endif
|
||||
|
||||
installlib: all install-headers
|
||||
installlib: all
|
||||
install -m 644 $(LIB) "$(libdir)"
|
||||
|
||||
install-headers:
|
||||
|
@ -125,7 +125,7 @@ depend: $(SRCS)
|
||||
$(CC) -MM $(CFLAGS) $^ 1>.depend
|
||||
|
||||
ifeq ($(BUILD_SHARED),yes)
|
||||
install: all install-headers
|
||||
install: all
|
||||
ifeq ($(CONFIG_WIN32),yes)
|
||||
install $(INSTALLSTRIP) -m 755 $(SLIBNAME) "$(prefix)"
|
||||
else
|
||||
@ -142,7 +142,7 @@ else
|
||||
install:
|
||||
endif
|
||||
|
||||
installlib: all install-headers
|
||||
installlib: all
|
||||
install -m 644 $(LIB) "$(libdir)"
|
||||
|
||||
install-headers:
|
||||
|
@ -61,7 +61,7 @@ distclean: clean
|
||||
|
||||
|
||||
ifeq ($(BUILD_SHARED),yes)
|
||||
install: all install-headers
|
||||
install: all
|
||||
ifeq ($(CONFIG_WIN32),yes)
|
||||
install $(INSTALLSTRIP) -m 755 $(SLIBNAME) "$(prefix)"
|
||||
else
|
||||
@ -78,7 +78,7 @@ else
|
||||
install:
|
||||
endif
|
||||
|
||||
installlib: all install-headers
|
||||
installlib: all
|
||||
install -m 644 $(LIB) "$(libdir)"
|
||||
|
||||
install-headers:
|
||||
|
Loading…
Reference in New Issue
Block a user