aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2016-05-14 22:03:43 -0400
committerJesse Luehrs <doy@tozt.net>2016-05-14 22:03:43 -0400
commitd5b52a1302ef4409424ec0633ccf9bd72359ea32 (patch)
tree76d90c6b51f8bf234cc19cce75147d6089a1b808 /Makefile
parentbfe96a6aa5fa3ca9a05b658efbcaee9dc01b5235 (diff)
downloadrunes-d5b52a1302ef4409424ec0633ccf9bd72359ea32.tar.gz
runes-d5b52a1302ef4409424ec0633ccf9bd72359ea32.zip
refactor/rewrite the client/server protocol handling
also pass the environment and current directory over as well
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 001c0f7..b0e4eaa 100644
--- a/Makefile
+++ b/Makefile
@@ -21,9 +21,13 @@ DOBJ = $(BUILD)runesd.o \
$(BUILD)pty-unix.o \
$(BUILD)loop.o \
$(BUILD)util.o \
- $(BUILD)daemon.o
+ $(BUILD)daemon.o \
+ $(BUILD)socket.o \
+ $(BUILD)protocol.o
COBJ = $(BUILD)runesc.o \
- $(BUILD)util.o
+ $(BUILD)util.o \
+ $(BUILD)socket.o \
+ $(BUILD)protocol.o
LIBS = cairo cairo-xlib libevent pangocairo
OPT ?= -g
CFLAGS ?= $(OPT) -Wall -Wextra -Werror