Commit fe2361b8d6b0e3b130903197b15f0e36c6f476ef

Thomas de Grivel 2024-07-11T14:42:18

add make build

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
diff --git a/Makefile b/Makefile
index 06777b7..46e7570 100644
--- a/Makefile
+++ b/Makefile
@@ -13,7 +13,9 @@ LISP_LOAD = ${LISP} --load
 CLEANFILES = build/*
 DISTCLEANFILES = ${RELEASE_DIR} ${RELEASE_TARBALL} ${RELEASE_DEPS_TARBALL}
 
-all: ${PROGRAM}
+all: build
+
+build: ${PROGRAM}
 
 deps:
 	LANG=C.UTF-8 ${LISP_LOAD} prepare-build.lisp --quit
@@ -43,4 +45,4 @@ clean:
 distclean:
 	rm -rf ${DISTCLEANFILES}
 
-.PHONY: all build/systems.lisp clean deps install ${PROGRAM} release
+.PHONY: all build build/systems.lisp clean deps install ${PROGRAM} release