diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-02-11 17:44:06 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-02-11 17:44:06 +0000 |
commit | f29f3b5d9ff5cc3b70dac295c9589577ce1a41c7 (patch) | |
tree | 28a629b00570cf06854f744cbddd48b5e1e55fee /Makefile | |
parent | 5e43b17e7ca7cd7ac6be863cb3c4c9006445846d (diff) | |
download | ffmpeg-f29f3b5d9ff5cc3b70dac295c9589577ce1a41c7.tar.gz |
Separate header file installation from the general install target.
Originally committed as revision 4981 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -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 |