-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
35 lines (27 loc) · 728 Bytes
/
Makefile
File metadata and controls
35 lines (27 loc) · 728 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# [[file:source.org::*Makefile][Makefile:1]]
##
# Starintel Gserver
#
# @file
# @version 0.1
LISP ?= sbcl
all: test
run:
$(LISP) --load run.lisp
reload:
$(LISP) --non-interactive \
--load source/starintel-gserver.asd \
--eval '(ql:quickload :starintel-gserver)' \
--eval "(sb-ext:save-lisp-and-die \"star-server\" :toplevel 'star::main :executable t)"
build:
$(LISP) --non-interactive \
--load source/starintel-gserver.asd \
--eval '(ql:quickload :starintel-gserver)' \
--eval "(sb-ext:save-lisp-and-die \"star-server\" :toplevel 'star::main :executable t :compression t)"
install:
cp star-server /usr/local/bin
docker:
docker build . -t "star-server"
clean:
rm -v ./star-server
# Makefile:1 ends here