initial commit
This commit is contained in:
commit
146e7a85d6
25 changed files with 5283 additions and 0 deletions
11
makefile
Normal file
11
makefile
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
CC := cc
|
||||
CFLAGS := -Og -g -std=c99 -Wpedantic -Wall
|
||||
OBJS = chunk.o gc.o main.o object.o parser.o print.o vm.o vendor/mpc.o \
|
||||
vendor/yar.o
|
||||
|
||||
growl: $(OBJS)
|
||||
$(CC) -o growl $(OBJS)
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
rm -f growl $(OBJS)
|
||||
Loading…
Add table
Add a link
Reference in a new issue