Makefile.sync 1.66 KB
Newer Older
Michael Yang's avatar
Michael Yang committed
1
2
UPSTREAM=https://github.com/ggerganov/llama.cpp.git
WORKDIR=llama/vendor
3
FETCH_HEAD=e1e8e0991ffd9e99a445c6812bb519d5bac9f4b5
Michael Yang's avatar
Michael Yang committed
4
5
6
7
8
9
10
11
12
13
14
15
16
17

.PHONY: help
help:
	@echo "Available targets:"
	@echo "    sync                 Sync with upstream repositories"
	@echo "    checkout             Checkout upstream repository"
	@echo "    apply-patches        Apply patches to local repository"
	@echo "    format-patches       Format patches from local repository"
	@echo "    clean                Clean local repository"
	@echo
	@echo "Example:"
	@echo "    make -f $(lastword $(MAKEFILE_LIST)) clean sync"

.PHONY: sync
18
sync: llama/build-info.cpp llama/llama.cpp ml/backend/ggml/ggml
19
20
21
22

.PHONY: llama/build-info.cpp
llama/build-info.cpp: llama/build-info.cpp.in
	sed -e 's|@FETCH_HEAD@|$(FETCH_HEAD)|' $< > $@
Michael Yang's avatar
Michael Yang committed
23
24

.PHONY: llama/llama.cpp
25
llama/llama.cpp: llama/vendor/
Michael Yang's avatar
Michael Yang committed
26
27
	rsync -arvzc -f "merge $@/.rsync-filter" $< $@

28
29
.PHONY: ml/backend/ggml/ggml
ml/backend/ggml/ggml: llama/vendor/ggml/
Michael Yang's avatar
Michael Yang committed
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
	rsync -arvzc -f "merge $@/.rsync-filter" $< $@

PATCHES=$(wildcard llama/patches/*.patch)

.PHONY: apply-patches
.NOTPARALLEL:
apply-patches: $(addsuffix ed, $(PATCHES))

%.patched: %.patch
	@if git -c user.name=nobody -c 'user.email=<>' -C $(WORKDIR) am -3 $(realpath $<); then touch $@; else git -C $(WORKDIR) am --abort; exit 1; fi

.PHONY: checkout
checkout: $(WORKDIR)
	git -C $(WORKDIR) fetch
	git -C $(WORKDIR) checkout -f $(FETCH_HEAD)

$(WORKDIR):
	git clone $(UPSTREAM) $(WORKDIR)

.PHONE: format-patches
format-patches: llama/patches
	git -C $(WORKDIR) format-patch \
		--no-signature \
		--no-numbered \
		--zero-commit \
		-o $(realpath $<) \
		$(FETCH_HEAD)

.PHONE: clean
clean: checkout
	$(RM) $(addsuffix ed, $(PATCHES))