From: Joel Rosdahl Date: Sat, 11 Aug 2012 09:01:16 +0000 (+0200) Subject: Add quicktest Makefile target X-Git-Tag: v3.1.8~2 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=4e52581ddfbe80ccc7148dd6278c944aeae37fd0;p=thirdparty%2Fccache.git Add quicktest Makefile target --- diff --git a/Makefile.in b/Makefile.in index e3f6e518b..08c162fbd 100644 --- a/Makefile.in +++ b/Makefile.in @@ -73,6 +73,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) @extra_deps@ $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(base_objs) $(test_objs) $(libs)