From c7a9d8b4af146a9ac438948e28c7bf21f57dff1a Mon Sep 17 00:00:00 2001 From: heck Date: Wed, 1 Apr 2020 20:06:33 +0200 Subject: [PATCH] Make all not supposed to make tests. test naming scheme using dash instead of underline --- Makefile | 2 +- test/Makefile | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index e7876bc..4cfe33d 100644 --- a/Makefile +++ b/Makefile @@ -21,7 +21,7 @@ endif .PHONY: all src test clean -all: test +all: src test: src $(MAKE) -C test compile diff --git a/test/Makefile b/test/Makefile index 71b5ff8..3ee714a 100644 --- a/test/Makefile +++ b/test/Makefile @@ -4,12 +4,12 @@ all: compile run: compile $(MAKE) -C Basic run - $(MAKE) -C JNI_85 run + $(MAKE) -C JNI-85 run compile: $(MAKE) -C Basic compile - $(MAKE) -C JNI_85 compile + $(MAKE) -C JNI-85 compile clean: $(MAKE) -C Basic clean - $(MAKE) -C JNI_85 clean + $(MAKE) -C JNI-85 clean