splitting things out

This commit is contained in:
2020-02-07 23:07:59 -08:00
parent 42658b8d98
commit 38a85b745e
6 changed files with 137 additions and 46 deletions

View File

@@ -1,5 +1,5 @@
BIN := ke
OBJS := main.o
OBJS := main.o terminal.o util.o
LDFLAGS := -static
CFLAGS := -pedantic -Wall -Werror -Wextra -O2 -std=c99
@@ -16,6 +16,7 @@ clean:
.PHONY: run
run: $(BIN)
reset
./$(BIN)
%.o: %.c