changelog shortlog graph tags branches changeset file revisions annotate raw help

Mercurial > infra / makefile

revision 12: 406b7640f3e4
parent 11: fdc215fe9f17
child 13: cb700df303f7
     1.1--- a/makefile	Fri Nov 24 04:35:42 2023 -0500
     1.2+++ b/makefile	Fri Nov 24 18:10:11 2023 -0500
     1.3@@ -29,7 +29,7 @@
     1.4 	$< $(LINUX_VERSION) build build/$@/keyring.gpg
     1.5 	cd build && unxz $@.tar.xz && tar -xvf $@.tar $(LINUX_TARGET)
     1.6 linux-config:$(LINUX_TARGET);
     1.7-	cd build/$< && make mrproper -j && zcat /proc/config.gz > .config && make localmodconfig
     1.8+	cd build/$< && make mrproper -j && zcat /proc/config.gz > .config && yes N | make localmodconfig
     1.9 linux-clean::;rm -rf build/$(LINUX_TARGET)*
    1.10 
    1.11 ### Emacs
    1.12@@ -55,6 +55,7 @@
    1.13 ### Code
    1.14 code:scripts/get-code.sh
    1.15 	$< $(SRC)
    1.16+
    1.17 code-clean::;rm -rf build/$(SRC)*
    1.18 
    1.19 ### Virt
    1.20@@ -85,6 +86,14 @@
    1.21 dist/cdn:cdn
    1.22 	cp -r $^ $@
    1.23 
    1.24-dist:dist/code dist/cdn
    1.25+dist/sbcl:sbcl;
    1.26+
    1.27+dist/linux:linux;
    1.28+
    1.29+dist/rocksdb:rocksdb;
    1.30+
    1.31+dist/emacs:emacs;
    1.32+
    1.33+dist:dist/code dist/cdn dist/sbcl dist/linux dist/rocksdb
    1.34 
    1.35 dist-clean::;rm -rf dist/*