aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2014-04-13 16:21:06 -0400
committerJesse Luehrs <doy@tozt.net>2014-04-13 16:22:08 -0400
commit4d0d05d8e20861ab229a2ddad95c9bc1e655ab15 (patch)
treecc1155dd6a811e646e6fcbf8f2fb39893dbac34d /Makefile
parent4d54ff3b9b84210ca28255a7c58888b4db805bff (diff)
downloadrunes-4d0d05d8e20861ab229a2ddad95c9bc1e655ab15.tar.gz
runes-4d0d05d8e20861ab229a2ddad95c9bc1e655ab15.zip
vt100 is misleading, just call it "parser"
my goal isn't to emulate vt100 to any serious extent, just enough to get by
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index e84d562..889371c 100644
--- a/Makefile
+++ b/Makefile
@@ -1,17 +1,17 @@
OUT = runes
-OBJ = runes.o display.o term.o vt100.o window-xlib.o pty-unix.o
+OBJ = runes.o display.o term.o parser.o window-xlib.o pty-unix.o
LIBS = cairo cairo-xlib libuv
CFLAGS ?= -g -Wall -Wextra -Werror
LDFLAGS ?= -g -Wall -Wextra -Werror
-GENERATED = vt100.c
+GENERATED = parser.c
build: $(OUT)
$(OUT): $(OBJ)
$(CC) $(shell pkg-config --libs $(LIBS)) $(LDFLAGS) -o $@ $^
-vt100.o: vt100.c
+parser.o: parser.c
$(CC) $(shell pkg-config --cflags $(LIBS)) $(CFLAGS) -Wno-unused-parameter -Wno-unused-function -Wno-unused-variable -Wno-unused-value -c -o $@ $^
%.o: %.c