diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 21 |
1 files changed, 5 insertions, 16 deletions
@@ -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) |