mirror of https://github.com/FFmpeg/FFmpeg.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
358 B
23 lines
358 B
24 years ago
|
include ../config.mk
|
||
|
CFLAGS= -O2 -Wall -g -I../libavcodec
|
||
|
|
||
|
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
|
||
|
|