summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile34
1 files changed, 17 insertions, 17 deletions
diff --git a/Makefile b/Makefile
index 7b85db6..a0abdb8 100644
--- a/Makefile
+++ b/Makefile
@@ -1,14 +1,14 @@
-# sic - simple irc client
+# cic - curses irc client
include config.mk
-SRC = sic.c
+SRC = cic.c
OBJ = ${SRC:.c=.o}
-all: options sic
+all: options cic
options:
- @echo sic build options:
+ @echo cic build options:
@echo "CFLAGS = ${CFLAGS}"
@echo "LDFLAGS = ${LDFLAGS}"
@echo "CC = ${CC}"
@@ -23,36 +23,36 @@ config.h:
@echo creating $@ from config.def.h
@cp config.def.h $@
-sic: ${OBJ}
+cic: ${OBJ}
@echo CC -o $@
@${CC} -o $@ ${OBJ} ${LDFLAGS}
clean:
@echo cleaning
- @rm -f sic ${OBJ} sic-${VERSION}.tar.gz
+ @rm -f cic ${OBJ} cic-${VERSION}.tar.gz
dist: clean
@echo creating dist tarball
- @mkdir -p sic-${VERSION}
- @cp -R LICENSE Makefile README arg.h config.def.h config.mk sic.1 sic.c util.c sic-${VERSION}
- @tar -cf sic-${VERSION}.tar sic-${VERSION}
- @gzip sic-${VERSION}.tar
- @rm -rf sic-${VERSION}
+ @mkdir -p cic-${VERSION}
+ @cp -R LICENSE Makefile README arg.h config.def.h config.mk cic.1 cic.c util.c cic-${VERSION}
+ @tar -cf cic-${VERSION}.tar cic-${VERSION}
+ @gzip cic-${VERSION}.tar
+ @rm -rf cic-${VERSION}
install: all
@echo installing executable file to ${DESTDIR}${PREFIX}/bin
@mkdir -p ${DESTDIR}${PREFIX}/bin
- @cp -f sic ${DESTDIR}${PREFIX}/bin
- @chmod 755 ${DESTDIR}${PREFIX}/bin/sic
+ @cp -f cic ${DESTDIR}${PREFIX}/bin
+ @chmod 755 ${DESTDIR}${PREFIX}/bin/cic
@echo installing manual page to ${DESTDIR}${MANPREFIX}/man1
@mkdir -p ${DESTDIR}${MANPREFIX}/man1
- @sed "s/VERSION/${VERSION}/g" < sic.1 > ${DESTDIR}${MANPREFIX}/man1/sic.1
- @chmod 644 ${DESTDIR}${MANPREFIX}/man1/sic.1
+ @sed "s/VERSION/${VERSION}/g" < cic.1 > ${DESTDIR}${MANPREFIX}/man1/cic.1
+ @chmod 644 ${DESTDIR}${MANPREFIX}/man1/cic.1
uninstall:
@echo removing executable file from ${DESTDIR}${PREFIX}/bin
- @rm -f ${DESTDIR}${PREFIX}/bin/sic
+ @rm -f ${DESTDIR}${PREFIX}/bin/cic
@echo removing manual page from ${DESTDIR}${MANPREFIX}/man1
- @rm -f ${DESTDIR}${MANPREFIX}/man1/sic.1
+ @rm -f ${DESTDIR}${MANPREFIX}/man1/cic.1
.PHONY: all options clean dist install uninstall