From 3f2f9ee3b36bfdffaa09b2e86d7381ab5875638d Mon Sep 17 00:00:00 2001 From: heck Date: Wed, 9 Mar 2022 00:15:08 +0100 Subject: [PATCH] Build: change default make target to test and bypass src (nothing there yet) --- Makefile | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 87739af..5e2eed5 100644 --- a/Makefile +++ b/Makefile @@ -5,16 +5,17 @@ .PHONY: all src test install uninstall clean -all: src +#all: src test +all: test -src: - $(MAKE) -C src +#src: +# $(MAKE) -C src -test: src +test: $(MAKE) -C test clean: - $(MAKE) -C src clean +# $(MAKE) -C src clean $(MAKE) -C test clean install: