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.
30 lines
483 B
30 lines
483 B
include ../config.mak |
|
CFLAGS= $(OPTFLAGS) -Wall -g -I../libavcodec -DHAVE_AV_CONFIG_H |
|
|
|
OBJS= rm.o mpeg.o asf.o avienc.o jpeg.o swf.o wav.o raw.o \ |
|
avidec.o ffm.o \ |
|
avio.o aviobuf.o utils.o \ |
|
file.o img.o au.o gif.o mov.o |
|
|
|
ifeq ($(CONFIG_GRAB),yes) |
|
OBJS+= grab.o audio.o |
|
endif |
|
|
|
ifneq ($(CONFIG_WIN32),yes) |
|
OBJS+= udp.o http.o |
|
endif |
|
|
|
LIB= libav.a |
|
|
|
all: $(LIB) |
|
|
|
$(LIB): $(OBJS) |
|
rm -f $@ |
|
$(AR) rcs $@ $(OBJS) |
|
|
|
%.o: %.c |
|
$(CC) $(CFLAGS) -c -o $@ $< |
|
|
|
clean: |
|
rm -f *.o *~ *.a |
|
|
|
|