Skip to content

Commit b59beeb

Browse files
committed
make : move targets back to the top
1 parent 4de2282 commit b59beeb

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Makefile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# Define the default target now so that it is always the first target
2+
BUILD_TARGETS = main quantize quantize-stats perplexity embedding vdot train-text-from-scratch convert-llama2c-to-ggml simple save-load-state server embd-input-test gguf llama-bench baby-llama beam-search tests/test-c.o
3+
4+
# Binaries only useful for tests
5+
TEST_TARGETS = tests/test-llama-grammar tests/test-grammar-parser tests/test-double-float tests/test-grad0 tests/test-opt tests/test-quantize-fns tests/test-quantize-perf tests/test-sampling tests/test-tokenizer-0-llama tests/test-tokenizer-0-falcon tests/test-tokenizer-1
6+
17
ifndef UNAME_S
28
UNAME_S := $(shell uname -s)
39
endif
@@ -27,12 +33,6 @@ ifeq ($(UNAME_S),Darwin)
2733
endif
2834
endif
2935

30-
# Define the default target now so that it is always the first target
31-
BUILD_TARGETS = main quantize quantize-stats perplexity embedding vdot train-text-from-scratch convert-llama2c-to-ggml simple save-load-state server embd-input-test gguf llama-bench baby-llama beam-search tests/test-c.o
32-
33-
# Binaries only useful for tests
34-
TEST_TARGETS = tests/test-llama-grammar tests/test-grammar-parser tests/test-double-float tests/test-grad0 tests/test-opt tests/test-quantize-fns tests/test-quantize-perf tests/test-sampling tests/test-tokenizer-0-llama tests/test-tokenizer-0-falcon tests/test-tokenizer-1
35-
3636
default: $(BUILD_TARGETS)
3737

3838
test:

0 commit comments

Comments
 (0)