diff options
author | June McEnroe <june@causal.agency> | 2019-10-22 22:15:55 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2019-10-22 22:15:55 -0400 |
commit | 31d09e34fa1507833b98122b54bb929b956dcdd7 (patch) | |
tree | ce90e7ce561c57ae0a9c34aa3fa2f3cc7e90afc0 /Makefile | |
parent | Remove pollfd from listen interface (diff) | |
download | pounce-31d09e34fa1507833b98122b54bb929b956dcdd7.tar.gz pounce-31d09e34fa1507833b98122b54bb929b956dcdd7.zip |
Rename bouncer to bounce
Diffstat (limited to '')
-rw-r--r-- | Makefile | 4 |
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 |