about summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--Makefile22
1 files changed, 11 insertions, 11 deletions
diff --git a/Makefile b/Makefile
index ece6649..3efcbd8 100644
--- a/Makefile
+++ b/Makefile
@@ -27,12 +27,12 @@ OBJS += url.o
 TESTS += format.t
 TESTS += term.t
 
-all: tags chatte test
+all: tags catgirl test
 
 tags: *.h *.c
 	ctags -w *.h *.c
 
-chatte: $(OBJS)
+catgirl: $(OBJS)
 	$(CC) $(LDFLAGS) $(OBJS) $(LDLIBS) -o $@
 
 $(OBJS): chat.h
@@ -45,16 +45,16 @@ test: $(TESTS)
 .c.t:
 	$(CC) $(CFLAGS) -DTEST $(LDFLAGS) $< $(LDLIBS) -o $@
 
-install: chatte chatte.1
+install: catgirl catgirl.1
 	install -d $(PREFIX)/bin $(MANPATH)/man1
-	install chatte $(PREFIX)/bin/chatte
-	install -m 644 chatte.1 $(MANPATH)/man1/chatte.1
+	install catgirl $(PREFIX)/bin/catgirl
+	install -m 644 catgirl.1 $(MANPATH)/man1/catgirl.1
 
 uninstall:
-	rm -f $(PREFIX)/bin/chatte
-	rm -f $(MANPATH)/man1/chatte.1
+	rm -f $(PREFIX)/bin/catgirl
+	rm -f $(MANPATH)/man1/catgirl.1
 
-chroot.tar: chatte chatte.1 man.sh
+chroot.tar: catgirl catgirl.1 man.sh
 	install -d -o root -g wheel \
 		root \
 		root/bin \
@@ -88,7 +88,7 @@ chroot.tar: chatte chatte.1 man.sh
 	tar -c -f chroot.tar -C root bin etc home lib libexec usr
 
 clean:
-	rm -rf tags chatte $(OBJS) $(TESTS) root chroot.tar
+	rm -rf tags catgirl $(OBJS) $(TESTS) root chroot.tar
 
-README: chatte.7
-	mandoc chatte.7 | sed $$'s/.\b//g' > README
+README: catgirl.7
+	mandoc catgirl.7 | col -b -x > README
a344b7df8983c491da53a8ffbab87617ae2a23&follow=1'>Add .gz to chroot-man scriptJune McEnroe 2020-02-11Add -R restricted flagJune McEnroe 2020-02-11Add chroot targetJune McEnroe 2020-02-11Exit focus and paste modes on err exitJune McEnroe 2020-02-11Add startup GPLv3 note and URLJune McEnroe 2020-02-11Make sure -D_GNU_SOURCE ends up in CFLAGS on LinuxJune McEnroe 2020-02-11Add note about setting PKG_CONFIG_PATHJune McEnroe 2020-02-11Rename query ID on nick changeJune McEnroe 2020-02-11Call completeClear when closing a windowJune McEnroe 2020-02-11Don't insert color codes for non-mentionsJune McEnroe 2020-02-11Take first two words in colorMentionsJune McEnroe 2020-02-11Use time_t for save signatureJune McEnroe 2020-02-11Set self.nick to * initiallyJune McEnroe 2020-02-11Define ColorCap instead of hardcoding 100June McEnroe 2020-02-11Move hash to top of chat.hJune McEnroe 2020-02-11Move base64 out of chat.hJune McEnroe 2020-02-11Move XDG_SUBDIR out of chat.hJune McEnroe 2020-02-11Fix whois idle unit calculationJune McEnroe 2020-02-11Cast towupper to wchar_tJune McEnroe 2020-02-11Cast set but unused variables to voidJune McEnroe 2020-02-11Declare strlcatJune McEnroe 2020-02-11Check if VDSUSP existsJune McEnroe 2020-02-11Fix completeReplace iterationJune McEnroe 2020-02-11Use pkg(8) to configure on FreeBSDJune McEnroe 2020-02-11Remove legacy codeJune McEnroe 2020-02-11Add INSTALLING section to READMEJune McEnroe