diff options
| author | John Vogel <jvogel4@stny.rr.com> | 2015-12-06 00:15:32 -0500 |
|---|---|---|
| committer | John Vogel <jvogel4@stny.rr.com> | 2015-12-06 00:15:32 -0500 |
| commit | 08b54647775a09c94cf32ae5eccd64c8661ce1f7 (patch) | |
| tree | 237d2a0984de75d5850f769b3256a47f4245522a /Makefile | |
| parent | 7f0141bbe92dc6c3423ff39d21e8ec5c18b58ec1 (diff) | |
| download | cic-08b54647775a09c94cf32ae5eccd64c8661ce1f7.tar.gz | |
Initial commit for cic, ncurses fork of sic
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 34 |
1 files changed, 17 insertions, 17 deletions
@@ -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 |
