From 8afa976e073c7bc29c878230eead6dddfdcc08a1 Mon Sep 17 00:00:00 2001 From: Nakidai Date: Sun, 5 Apr 2026 19:51:14 +0300 Subject: Add code --- Makefile | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..808887a --- /dev/null +++ b/Makefile @@ -0,0 +1,20 @@ +OBJS += compile.o +OBJS += debug.o +OBJS += lex.o +OBJS += main.o +OBJS += parse.o +OBJS += say.o +OBJS += str.o +OBJS += val.o +OBJS += var.o +OBJS += vertex.o + +all: thac + +thac: ${OBJS} + ${CC} ${LDFLAGS} -o $@ ${OBJS} ${LDLIBS} + +${OBJS}: thac.h + +clean: + rm -f thac ${OBJS} -- cgit 1.4.1