X-Git-Url: https://git.distorted.org.uk/~mdw/zone/blobdiff_plain/10b8955c3c8605f14fbbe7ee6be502d4c91efa08..74962377fb06e415d2abe35833aa89c04090bde9:/Makefile diff --git a/Makefile b/Makefile index e39eaf2..6cbf595 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,13 @@ +SOURCES = \ + zone.asd \ + frontend.lisp \ + zone.lisp \ + net.lisp serv.lisp sys.lisp \ + addr-family-ipv4.lisp addr-family-ipv6.lisp + CLEANFILES += zone all:: zone -zone: frontend.lisp zone.lisp net.lisp serv.lisp sys.lisp +zone: $(SOURCES) cl-launch -o $@ -s zone +I -d `pwd`/zone.core -r zone.frontend:main clean:; rm -f $(CLEANFILES)