From c2e8836f592db9cf28111182ea40f1268c758933 Mon Sep 17 00:00:00 2001 From: cflip Date: Sun, 8 Jan 2023 21:25:21 -0700 Subject: Connect the window and font code to the editor's main function --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 2f785c9..e887652 100644 --- a/Makefile +++ b/Makefile @@ -1,14 +1,17 @@ CFLAGS=-std=c99 +LFLAGS=-lSDL2 OUT=editor SRC=main.c \ buffer.c \ editor.c \ file.c \ + font.c \ input.c \ row.c \ syntax.c \ terminal.c \ + window.c ${OUT}: ${SRC} - ${CC} ${CFLAGS} ${SRC} -o ${OUT} + ${CC} ${CFLAGS} ${LFLAGS} ${SRC} -o ${OUT} -- cgit v1.2.3