diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..1dab9cc --- /dev/null +++ b/Makefile @@ -0,0 +1,17 @@ +PREFIX ?= /usr/local +BINDIR ?= ${PREFIX}/bin + +all: ce + +ce: + ecl --load build.cl --eval '(quit)' + +install: all + install ce ${DESTDIR}${BINDIR} + +uninstall: + rm -f ${DESTDIR}${BINDIR}/ce + +clean: + rm -f ce ce.fasb + diff --git a/build.cl b/build.cl index 5bdc55d..3e12c5f 100644 --- a/build.cl +++ b/build.cl @@ -18,5 +18,3 @@ :epilogue-code '(ce-main) :move-here "./") -(format t "done building~%") -