diff options
author | Måns Rullgård <mans@mansr.com> | 2008-04-16 21:50:41 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2008-04-16 21:50:41 +0000 |
commit | b153c68b8ad93cefdc51833f2e16c18a5fb1ab90 (patch) | |
tree | 03797672388eabfd56a3cc38fdd5a3a0e867d9b4 /common.mak | |
parent | 54381d7557c6f2af5bee7110898781782af32312 (diff) | |
download | ffmpeg-b153c68b8ad93cefdc51833f2e16c18a5fb1ab90.tar.gz |
fix building of test programs (make tests)
Originally committed as revision 12867 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'common.mak')
-rw-r--r-- | common.mak | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/common.mak b/common.mak index 2ec0dffd13..93caa00f4d 100644 --- a/common.mak +++ b/common.mak @@ -70,11 +70,14 @@ LIBSUFFIXES = *.a *.lib *.so *.so.* *.dylib *.dll *.def *.dll.a *.exp *.map DISTCLEANSUFFIXES = *.d define RULES -$(SUBDIR)%: $(SUBDIR)%.o $(LIBNAME) - $(CC) $(FFLDFLAGS) -o $$@ $$^ $(FFEXTRALIBS) +$(SUBDIR)%$(EXESUF): $(SUBDIR)%.o + $(CC) $(FFLDFLAGS) -o $$@ $$^ $(SUBDIR)$(LIBNAME) $(FFEXTRALIBS) -$(SUBDIR)%-test$(EXESUF): $(SUBDIR)%.c $(LIBNAME) - $(CC) $(CFLAGS) $(FFLDFLAGS) -DTEST -o $$@ $$^ $(FFEXTRALIBS) +$(SUBDIR)%-test.o: $(SUBDIR)%.c + $(CC) $(CFLAGS) -DTEST -c -o $$@ $$^ + +$(SUBDIR)%-test.o: $(SUBDIR)%-test.c + $(CC) $(CFLAGS) -DTEST -c -o $$@ $$^ clean:: rm -f $(TESTS) $(addprefix $(SUBDIR),$(CLEANFILES) $(CLEANSUFFIXES) $(LIBSUFFIXES)) \ |