get it building again
[lice.git] / src / Makefile.in
blob8ade5ae26945419bca828b2166126d3d1cefb05c
1 # choose your lisp and appropriate lisp_opts
2 LISP=@LISP_PROGRAM@
4 clisp_OPTS=-K full -on-error exit -i ~/.clisprc ./make-image.lisp
5 sbcl_OPTS=--load ./make-image.lisp
7 LISP_OPTS= $(@LISP@_OPTS)
9 # This is copied from the .asd file. It'd be nice to have the list in
10 # one place, but oh well.
11 FILES=package.lisp wrappers.lisp global.lisp custom.lisp commands.lisp data-types.lisp keymap.lisp casefiddle.lisp subprocesses.lisp buffer-local.lisp buffer.lisp intervals.lisp textprop.lisp search.lisp frame.lisp window.lisp render.lisp wm.lisp insdel.lisp cmds.lisp editfns.lisp undo.lisp syntax.lisp major-mode.lisp keyboard.lisp debugger.lisp recursive-edit.lisp minibuffer.lisp files.lisp help.lisp debug.lisp tty-render.lisp clisp-render.lisp main.lisp lisp/subr.lisp lisp/simple.lisp indent.lisp emacs-lisp/lisp-mode.lisp lisp/lisp-indent.lisp lisp/paragraphs.lisp textmodes/text-mode.lisp play/doctor.lisp play/hanoi.lisp
13 all: lice
15 lice: $(FILES)
16 $(LISP) $(LISP_OPTS)
18 etags: TAGS
19 etags `find . -name \*.lisp` # we could use FILES but it just isn't always up to date
21 clean:
22 rm -f *.fasl *.fas *.lib lice