From e049d5a2d70465f800cdbab0fc44571d71823971 Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Mon, 20 Aug 2018 15:35:00 -0400 Subject: Name project chatte --- .gitignore | 2 +- Makefile | 10 +++++----- chat.h | 2 +- 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 . */ -#define SOURCE_URL "https://code.causal.agency/june/chat" +#define SOURCE_URL "https://code.causal.agency/june/chatte" #include #include -- cgit 1.4.1