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:
Diego Biurrun 2006-02-11 17:44:06 +00:00
parent 5e43b17e7c
commit f29f3b5d9f
5 changed files with 14 additions and 9 deletions

View File

@ -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

View File

@ -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 $@

View File

@ -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:

View File

@ -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:

View File

@ -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: