chiark / gitweb /
zone.lisp: Stringify the zone name at construction time.
[zone] / Makefile
1 SOURCES = \
2         zone.asd \
3         frontend.lisp \
4         zone.lisp \
5         net.lisp serv.lisp sys.lisp \
6         addr-family-ipv4.lisp addr-family-ipv6.lisp
7
8 CLEANFILES += zone
9 all:: zone
10 zone: $(SOURCES)
11         cl-launch -o $@ -s zone +I -d `pwd`/zone.core -r zone.frontend:main
12
13 clean:; rm -f $(CLEANFILES)