From b3902ca1782515ee8b9cd38af10e51bc3ba2fc98 Mon Sep 17 00:00:00 2001
From: Matthias-Christian Ott <ott@enolink.de>
Date: Fri, 4 Jul 2008 18:18:51 +0200
Subject: remove emallocz()

---
 Makefile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

(limited to 'Makefile')

diff --git a/Makefile b/Makefile
index ddf1952..72154e9 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@
 
 include config.mk
 
-SRC = st.c std.c util.c pty.c
+SRC = st.c std.c pty.c
 OBJ = ${SRC:.c=.o}
 
 all: options st std
@@ -21,11 +21,11 @@ options:
 
 ${OBJ}: config.mk
 
-st: st.o util.o
+st: st.o
 	@echo CC -o $@
 	@${CC} -o $@ $^ ${LDFLAGS} ${X11LDFLAGS}
 
-std: std.o pty.o util.o
+std: std.o pty.o
 	@echo CC -o $@
 	@${CC} -o $@ $^ ${LDFLAGS}
 
-- 
cgit v1.2.3-13-gbd6f