diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2002-07-25 16:06:41 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2002-07-25 16:06:41 +0000 |
commit | 910fdd21b59645cb833ae3b16ee3ffc14d51b2d6 (patch) | |
tree | 94ea81d8b47747798b8311f16e45c1fe94f70a8a /libav | |
parent | a25e098d33800b42544eb0d8f47efa945ff88911 (diff) | |
download | ffmpeg-910fdd21b59645cb833ae3b16ee3ffc14d51b2d6.tar.gz |
added installlib target
Originally committed as revision 807 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libav')
-rw-r--r-- | libav/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/libav/Makefile b/libav/Makefile index 8ff2acfe75..6f6df89363 100644 --- a/libav/Makefile +++ b/libav/Makefile @@ -8,7 +8,7 @@ VPATH=$(SRC_PATH)/libav CFLAGS= $(OPTFLAGS) -Wall -g -I.. -I$(SRC_PATH) -I$(SRC_PATH)/libavcodec -DHAVE_AV_CONFIG_H -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_GNU_SOURCE -OBJS= utils.o +OBJS= utils.o cutils.o allformats.o # mux and demuxes OBJS+=mpeg.o mpegts.o ffm.o crc.o img.o raw.o rm.o asf.o \ @@ -36,6 +36,14 @@ $(LIB): $(OBJS) rm -f $@ $(AR) rcs $@ $(OBJS) +installlib: all + install -m 644 $(LIB) $(prefix)/lib + mkdir -p $(prefix)/include/ffmpeg + install -m 644 $(SRC_PATH)/libav/avformat.h $(SRC_PATH)/libav/avio.h \ + $(SRC_PATH)/libav/rtp.h $(SRC_PATH)/libav/rtsp.h \ + $(SRC_PATH)/libav/rtspcodes.h \ + $(prefix)/include/ffmpeg + %.o: %.c $(CC) $(CFLAGS) -c -o $@ $< |