comparison Makefile @ 645:f53e17dec13f libavcodec

apiexample needs EXTRALIBS
author michaelni
date Thu, 05 Sep 2002 10:06:20 +0000
parents 641708b5c33c
children aad2dedb8b6a
comparison
equal deleted inserted replaced
644:641708b5c33c 645:f53e17dec13f
128 distclean: clean 128 distclean: clean
129 rm -f Makefile.bak .depend 129 rm -f Makefile.bak .depend
130 130
131 # api example program 131 # api example program
132 apiexample: apiexample.c $(LIB) 132 apiexample: apiexample.c $(LIB)
133 $(CC) $(CFLAGS) -o $@ $< $(LIB) -lm 133 $(CC) $(CFLAGS) -o $@ $< $(LIB) $(EXTRALIBS) -lm
134 134
135 # cpuid test 135 # cpuid test
136 cpuid_test: i386/cputest.c 136 cpuid_test: i386/cputest.c
137 $(CC) $(CFLAGS) -D__TEST__ -o $@ $< 137 $(CC) $(CFLAGS) -D__TEST__ -o $@ $<
138 138