mirror of
https://github.com/librempeg/librempeg
synced 2024-11-23 19:58:59 +00:00
420b073bbc
Originally committed as revision 19 to svn://svn.ffmpeg.org/ffmpeg/trunk
23 lines
386 B
Makefile
23 lines
386 B
Makefile
include ../config.mak
|
|
CFLAGS= $(OPTFLAGS) -Wall -g -I../libavcodec -DHAVE_AV_CONFIG_H
|
|
|
|
OBJS= rm.o mpeg.o asf.o avienc.o jpegenc.o swf.o wav.o raw.o \
|
|
avidec.o ffm.o \
|
|
avio.o aviobuf.o utils.o \
|
|
udp.o http.o file.o grab.o audio.o img.o
|
|
|
|
LIB= libav.a
|
|
|
|
all: $(LIB)
|
|
|
|
$(LIB): $(OBJS)
|
|
rm -f $@
|
|
$(AR) rcs $@ $(OBJS)
|
|
|
|
%.o: %.c
|
|
$(CC) $(CFLAGS) -c -o $@ $<
|
|
|
|
clean:
|
|
rm -f *.o *~ *.a
|
|
|