tweak: initialize git repo

This commit is contained in:
NunoSempere 2023-04-29 18:27:11 -04:00
commit 0a01b3e398
3 changed files with 24 additions and 0 deletions

0
lisp.c Normal file
View File

23
makefile Normal file
View File

@ -0,0 +1,23 @@
# make
# make build
# (sudo) make install
# make format
# make clean
# make uninstall
## C compiler
CC=tcc # much faster compilation than gcc
## Main file
SRC=lisp.c
## Formatter
STYLE_BLUEPRINT=webkit
FORMATTER=clang-format -i -style=$(STYLE_BLUEPRINT)
build: $(SRC)
$(cc) $(src) -o lisp
format: $(SRC)
$(FORMATTER) $(SRC)

1
notes/link.txt Normal file
View File

@ -0,0 +1 @@
https://buildyourownlisp.com/chapter2_installation