summary refs log tree commit diff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--.gitignore2
-rw-r--r--Makefile10
-rw-r--r--chat.h2
3 files changed, 7 insertions, 7 deletions
diff --git a/.gitignore b/.gitignore
index 716462e..cdb8b82 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,5 +1,5 @@
 *.o
-chat
+chatte
 chroot.tar
 root
 tags
diff --git a/Makefile b/Makefile
index 5f30bb4..d2db213 100644
--- a/Makefile
+++ b/Makefile
@@ -20,9 +20,9 @@ OBJS += term.o
 OBJS += ui.o
 OBJS += url.o
 
-all: tags chat
+all: tags chatte
 
-chat: $(OBJS)
+chatte: $(OBJS)
 	$(CC) $(LDFLAGS) $(OBJS) $(LDLIBS) -o $@
 
 $(OBJS): chat.h
@@ -30,7 +30,7 @@ $(OBJS): chat.h
 tags: *.h *.c
 	ctags -w *.h *.c
 
-chroot.tar: chat
+chroot.tar: chatte
 	mkdir -p root
 	install -d -o root -g wheel \
 		root/bin \
@@ -60,8 +60,8 @@ chroot.tar: chat
 	cp -a -f /usr/share/locale root/usr/share
 	cp -p -f /usr/share/misc/termcap.db root/usr/share/misc
 	cp -p -f /bin/sh root/bin
-	install -o root -g wheel -m 555 chat root/bin
+	install -o root -g wheel -m 555 chatte root/bin
 	tar -c -f chroot.tar -C root bin etc home lib libexec usr
 
 clean:
-	rm -f tags chat $(OBJS) chroot.tar
+	rm -f tags chatte $(OBJS) chroot.tar
diff --git a/chat.h b/chat.h
index 51494de..4975a3e 100644
--- a/chat.h
+++ b/chat.h
@@ -14,7 +14,7 @@
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-#define SOURCE_URL "https://code.causal.agency/june/chat"
+#define SOURCE_URL "https://code.causal.agency/june/chatte"
 
 #include <stdarg.h>
 #include <stdbool.h>
h=2.2&id=fb8a33c0130e6381ce69402607e5c240f97b471b&follow=1'>Remove rc scriptsJune McEnroe 2020-08-27contrib/palaver: Fix documented database pathJune McEnroe 2020-08-27contrib/palaver: Remove rc scriptJune McEnroe 2020-08-27contrib/palaver: Fix database search and creationJune McEnroe 2020-08-27contrib/palaver: Use pounce's XDG directoryJune McEnroe 2020-08-27contrib/palaver: Only allow HTTPSJune McEnroe 2020-08-25Support the pounce_env rc variableJune McEnroe 2020-08-25Remove deprecated option namesJune McEnroe 2020-08-25Document configuration and data file searchJune McEnroe 2020-08-24Use dataOpen for save fileJune McEnroe 2020-08-24Use configOpen to load localCAJune McEnroe 2020-08-24Use configPath to load client cert/privJune McEnroe 2020-08-24Use configOpen in getopt_configJune McEnroe 2020-08-24Import xdg.c from catgirlJune McEnroe 2020-08-23Replace “RAND_bytes” by “getentropy”Issam E. Maghni 2020-08-16contrib/palaver: Add no message preview flagsJune McEnroe 2020-08-13contrib/palaver: Don't set channel for PMsJune McEnroe 2020-08-13Fix unintended interception of NICK after registrationJune McEnroe 2020-08-12Add Additional Components section to READMEJune McEnroe 2020-08-12Document -L / palaver optionJune McEnroe 2020-08-11contrib/palaver: Document service configurationJune McEnroe 2020-08-11contrib/palaver: Add install target and rc scriptJune McEnroe 2020-08-11contrib/palaver: Implement command and notificationsJune McEnroe