- 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 dsputil.o
- motion_est.o
- LIB= libav.a
- all: $(LIB)
- $(LIB): $(OBJS)
- rm -f $@
- ar rcs $@ $(OBJS)
- dsputil.o: dsputil.c dsputil.h
- %.o: %.c
- gcc $(CFLAGS) -c -o $@ $<
- clean:
- rm -f *.o *~ *.a