summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile21
1 files changed, 5 insertions, 16 deletions
diff --git a/Makefile b/Makefile
index c6b7b82..c5cd3aa 100644
--- a/Makefile
+++ b/Makefile
@@ -28,10 +28,6 @@ GOLDFLAGS = -L $(GOLIBDIR)
-all:
-include deps.mk
-
-
objects = \
src/$(NAME).a \
tests/$(NAME).a \
@@ -84,22 +80,15 @@ src/version.go: Makefile
-parallelunit.bin-check = \
- tests/main.bin/1 \
- tests/main.bin/2 \
- tests/main.bin/3 \
- tests/main.bin/4 \
-
-$(parallelunit.bin-check): tests/main.bin
- $(EXEC)$(@D) $(@F)
+tests.bin-check = \
+ tests/main.bin-check \
+ tests/libbuild.bin-check \
+tests/main.bin-check: tests/main.bin
tests/libbuild.bin-check: tests/libbuild.bin
+$(tests.bin-check):
$(EXEC)$*.bin
-tests.bin-check = \
- $(parallelunit.bin-check) \
- tests/libbuild.bin-check \
-
check-unit: $(tests.bin-check)