about summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-10-22 22:15:55 -0400
committerJune McEnroe <june@causal.agency>2019-10-22 22:15:55 -0400
commit31d09e34fa1507833b98122b54bb929b956dcdd7 (patch)
treece90e7ce561c57ae0a9c34aa3fa2f3cc7e90afc0 /Makefile
parentRemove pollfd from listen interface (diff)
downloadpounce-31d09e34fa1507833b98122b54bb929b956dcdd7.tar.gz
pounce-31d09e34fa1507833b98122b54bb929b956dcdd7.zip
Rename bouncer to bounce
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index c974242..80b5261 100644
--- a/Makefile
+++ b/Makefile
@@ -7,7 +7,7 @@ LDLIBS = -ltls
 
 -include config.mk
 
-OBJS += bouncer.o
+OBJS += bounce.o
 OBJS += listen.o
 
 all: tags linger
@@ -15,7 +15,7 @@ all: tags linger
 linger: ${OBJS}
 	${CC} ${LDFLAGS} ${OBJS} ${LDLIBS} -o $@
 
-${OBJS}: bouncer.h
+${OBJS}: bounce.h
 
 tags: *.c *.h
 	ctags -w *.c *.h