diff options
author | cflip <cflip@cflip.net> | 2023-01-08 21:25:21 -0700 |
---|---|---|
committer | cflip <cflip@cflip.net> | 2023-01-08 21:25:21 -0700 |
commit | c2e8836f592db9cf28111182ea40f1268c758933 (patch) | |
tree | 1dce79a44616787778a0223eb4e4dcfccf7f2e83 /Makefile | |
parent | 76010f7b97e6b71db6e123d28c91f997ff56945c (diff) |
Connect the window and font code to the editor's main function
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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} |