Mercurial > libavcodec.hg
comparison Makefile @ 214:73df666cacc7 libavcodec
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
author | nickols_k |
---|---|
date | Sun, 20 Jan 2002 14:48:02 +0000 |
parents | ac5075a55488 |
children | ddb1a0e94cf4 |
comparison
equal
deleted
inserted
replaced
213:e80ad397d30e | 214:73df666cacc7 |
---|---|
35 ifeq ($(HAVE_MLIB),yes) | 35 ifeq ($(HAVE_MLIB),yes) |
36 OBJS += mlib/dsputil_mlib.o | 36 OBJS += mlib/dsputil_mlib.o |
37 CFLAGS += $(MLIB_INC) | 37 CFLAGS += $(MLIB_INC) |
38 endif | 38 endif |
39 | 39 |
40 # alpha specific stuff | |
41 ifeq ($(TARGET_ARCH_ALPHA),yes) | |
42 OBJS += alpha/dsputil_alpha.o alpha/mpegvideo_alpha.o | |
43 CFLAGS += -Wa,-mpca56 | |
44 endif | |
45 | |
40 SRCS = $(OBJS:.o=.c) $(ASM_OBJS:.o=.s) | 46 SRCS = $(OBJS:.o=.c) $(ASM_OBJS:.o=.s) |
41 | 47 |
42 LIB= libavcodec.a | 48 LIB= libavcodec.a |
43 ifeq ($(BUILD_SHARED),yes) | 49 ifeq ($(BUILD_SHARED),yes) |
44 SLIB= libffmpeg-$(VERSION).so | 50 SLIB= libffmpeg-$(VERSION).so |
72 | 78 |
73 clean: | 79 clean: |
74 rm -f *.o *~ $(LIB) $(SLIB) *.so i386/*.o i386/*~ \ | 80 rm -f *.o *~ $(LIB) $(SLIB) *.so i386/*.o i386/*~ \ |
75 armv4l/*.o armv4l/*~ \ | 81 armv4l/*.o armv4l/*~ \ |
76 mlib/*.o mlib/*~ \ | 82 mlib/*.o mlib/*~ \ |
83 alpha/*.o alpha/*~ \ | |
77 libac3/*.o libac3/*~ \ | 84 libac3/*.o libac3/*~ \ |
78 apiexample $(TESTS) | 85 apiexample $(TESTS) |
79 | 86 |
80 distclean: clean | 87 distclean: clean |
81 rm -f Makefile.bak .depend | 88 rm -f Makefile.bak .depend |