aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index ddf1952..72154e9 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@
3 3
4include config.mk 4include config.mk
5 5
6SRC = st.c std.c util.c pty.c 6SRC = st.c std.c pty.c
7OBJ = ${SRC:.c=.o} 7OBJ = ${SRC:.c=.o}
8 8
9all: options st std 9all: options st std
@@ -21,11 +21,11 @@ options:
21 21
22${OBJ}: config.mk 22${OBJ}: config.mk
23 23
24st: st.o util.o 24st: st.o
25 @echo CC -o $@ 25 @echo CC -o $@
26 @${CC} -o $@ $^ ${LDFLAGS} ${X11LDFLAGS} 26 @${CC} -o $@ $^ ${LDFLAGS} ${X11LDFLAGS}
27 27
28std: std.o pty.o util.o 28std: std.o pty.o
29 @echo CC -o $@ 29 @echo CC -o $@
30 @${CC} -o $@ $^ ${LDFLAGS} 30 @${CC} -o $@ $^ ${LDFLAGS}
31 31