diff options
author | Nick Kurshev <nickols_k@mail.ru> | 2001-08-08 16:26:51 +0000 |
---|---|---|
committer | Nick Kurshev <nickols_k@mail.ru> | 2001-08-08 16:26:51 +0000 |
commit | c10e9f70c0509ee17c5f339672550e610ff82a36 (patch) | |
tree | 9ca0ac86315eb2bc369a8bc5a6b872b81ad513a2 /libavcodec/Makefile | |
parent | 16fbebe1731fdcaa36112917cee485120ab02352 (diff) | |
download | ffmpeg-c10e9f70c0509ee17c5f339672550e610ff82a36.tar.gz |
Portability and testing issues
Originally committed as revision 55 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r-- | libavcodec/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index c345a650af..d2be0e760c 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -37,7 +37,7 @@ LIB= libavcodec.a TESTS= imgresample-test dct-test all: $(LIB) -tests: apiexample $(TESTS) +tests: apiexample cpuid_test $(TESTS) $(LIB): $(OBJS) $(ASM_OBJS) rm -f $@ @@ -70,6 +70,10 @@ distclean: clean apiexample: apiexample.c $(LIB) $(CC) $(CFLAGS) -o $@ $< $(LIB) -lm +# cpuid test +cpuid_test: i386/cputest.c + $(CC) $(CFLAGS) -D__TEST__ -o $@ $< + # testing progs imgresample-test: imgresample.c |