mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-12 02:04:58 +00:00
9aeeeb63f7
Originally committed as revision 2 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 lines
271 B
Makefile
18 lines
271 B
Makefile
CFLAGS= -O2 -Wall -g
|
|
LDFLAGS= -g
|
|
|
|
OBJS= common.o mpegvideo.o h263enc.o jrevdct.o jfdctfst.o \
|
|
mpegaudio.o ac3enc.o mjpegenc.o resample.o
|
|
LIB= libav.a
|
|
|
|
all: $(LIB)
|
|
|
|
$(LIB): $(OBJS)
|
|
ar rcs $@ $(OBJS)
|
|
|
|
%.o: %.c
|
|
gcc $(CFLAGS) -c -o $@ $<
|
|
|
|
clean:
|
|
rm -f *.o *~ *.a
|