Makefile @ 84fa1724b747 default tip

More work on the Huffman encoder and basic project skeleton
author Steve Losh <steve@stevelosh.com>
date Sun, 26 Jul 2020 16:49:17 -0400
parents a3237e7f8fc8
children (none)
.PHONY: all

sources := $(shell hg files)

all: c e

c: $(sources)
	sbcl --eval '(ql:quickload :tdcb)' --eval '(tdcb/main:build/compress)'

e: $(sources)
	sbcl --eval '(ql:quickload :tdcb)' --eval '(tdcb/main:build/extract)'