From 4d0d05d8e20861ab229a2ddad95c9bc1e655ab15 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Sun, 13 Apr 2014 16:21:06 -0400 Subject: vt100 is misleading, just call it "parser" my goal isn't to emulate vt100 to any serious extent, just enough to get by --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Makefile') 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 -- cgit v1.2.3-54-g00ecf