Browse Source

Make all not supposed to make tests.

test naming scheme using dash instead of underline
JNI-94
heck 5 years ago
parent
commit
c7a9d8b4af
  1. 2
      Makefile
  2. 6
      test/Makefile

2
Makefile

@ -21,7 +21,7 @@ endif
.PHONY: all src test clean
all: test
all: src
test: src
$(MAKE) -C test compile

6
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

Loading…
Cancel
Save