Makefile @ 1d2776f7fa4a

Update to latest version of boots, get it building again
author Steve Losh <steve@stevelosh.com>
date Mon, 13 Apr 2020 21:23:33 -0400
parents 3ecc82d75817
children f592e6093609
.PHONY: vendor clean binary-sbcl binary-ccl binary

all: bin/brows

# Clean -----------------------------------------------------------------------
clean:
	rm -rf bin

# Build -----------------------------------------------------------------------
lisps := $(shell ffind '\.(asd|lisp)$$')

bin:
	mkdir -p bin

binary-sbcl: bin
	/usr/local/bin/sbcl --noinform --load "src/build.lisp"

binary-ccl: bin
	/usr/local/bin/ccl64 --load "src/build.lisp"

binary: binary-sbcl

bin/brows: $(lisps) Makefile
	make binary-sbcl
	mv brows bin