From: Joel Rosdahl Date: Wed, 8 Aug 2012 16:55:44 +0000 (+0200) Subject: Add quicktest Makefile target X-Git-Tag: v3.2~104 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a03cb5a3562d5d771f3279b9ed1b0e722f2aa652;p=thirdparty%2Fccache.git Add quicktest Makefile target --- diff --git a/Makefile.in b/Makefile.in index e5f3c226a..e4d146454 100644 --- a/Makefile.in +++ b/Makefile.in @@ -81,6 +81,10 @@ test: ccache$(EXEEXT) test/main$(EXEEXT) test/main$(EXEEXT) CC='$(CC)' $(srcdir)/test.sh +.PHONY: quicktest +quicktest: test/main$(EXEEXT) + test/main$(EXEEXT) + test/main$(EXEEXT): $(base_objs) $(test_objs) $(all_libs) $(CC) $(all_cflags) $(all_ldflags) -o $@ $(base_objs) $(test_objs) $(all_libs)