about summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-08-20 15:35:00 -0400
committerJune McEnroe <june@causal.agency>2018-08-20 15:35:00 -0400
commite049d5a2d70465f800cdbab0fc44571d71823971 (patch)
tree0d1e1c6f717b5fdc04135b8318dd3a00282ade28 /Makefile
parentAccept unique prefixes of commands (diff)
downloadcatgirl-e049d5a2d70465f800cdbab0fc44571d71823971.tar.gz
catgirl-e049d5a2d70465f800cdbab0fc44571d71823971.zip
Name project chatte
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
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