build: add a makefile

This commit is contained in:
xfnw 2023-10-21 11:52:35 -04:00
parent d59bebaba9
commit ec04dcaa6c
2 changed files with 17 additions and 2 deletions

17
Makefile Normal file
View File

@ -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

View File

@ -18,5 +18,3 @@
:epilogue-code '(ce-main)
:move-here "./")
(format t "done building~%")