diff options
author | June McEnroe <june@causal.agency> | 2019-10-25 20:35:36 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2019-10-25 20:35:36 -0400 |
commit | 616a243635c6185e95b5e26417243be8382c1523 (patch) | |
tree | 8f61d9b1f2a50207cede3cec00f8327bf61ae5f6 /Makefile | |
parent | Add copy of AGPLv3 (diff) | |
download | pounce-616a243635c6185e95b5e26417243be8382c1523.tar.gz pounce-616a243635c6185e95b5e26417243be8382c1523.zip |
Rename project pounce
Diffstat (limited to '')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile index 4ebdd0c..c21a1a6 100644 --- a/Makefile +++ b/Makefile @@ -14,9 +14,9 @@ OBJS += ring.o OBJS += server.o OBJS += state.o -all: tags linger +all: tags pounce -linger: ${OBJS} +pounce: ${OBJS} ${CC} ${LDFLAGS} ${OBJS} ${LDLIBS} -o $@ ${OBJS}: bounce.h @@ -25,4 +25,4 @@ tags: *.c *.h ctags -w *.c *.h clean: - rm -f tags linger ${OBJS} + rm -f tags pounce ${OBJS} |