This commit is contained in:
2026-05-13 08:07:13 -05:00
parent 19bff9b32f
commit 7501c74712
6 changed files with 65 additions and 26 deletions

View File

@@ -75,18 +75,11 @@ uninstall:
.PHONY: all check clean install uninstall
#
# intermediate rules
#
%.o: %.c
$(CC) $(CFLAGS) -c -o $@ $^
#
# executable files
#
LIB_SRC=lib/value.o lib/stack.o lib/heap.o lib/vm.o
LIB_SRC=lib/value.o lib/stack.o lib/heap.o lib/vm.o lib/utils.o
tyche: CFLAGS += ${RELEASE_CFLAGS}
tyche: LDFLAGS += ${RELEASE_LDFLAGS}