stagit/Makefile

100 lines
2.2 KiB
Makefile
Raw Normal View History

2015-12-05 20:07:52 +00:00
include config.mk
NAME = stagit
VERSION = 0.3.1
2015-12-05 20:07:52 +00:00
SRC = \
stagit.c\
stagit-index.c
COMPATSRC = \
2016-01-06 17:02:28 +00:00
reallocarray.c\
strlcat.c\
strlcpy.c
2015-12-05 20:07:52 +00:00
BIN = \
stagit\
stagit-index
2015-12-05 20:07:52 +00:00
MAN1 = \
stagit.1\
stagit-index.1
2015-12-05 20:07:52 +00:00
DOC = \
LICENSE\
README\
TODO
HDR = compat.h
2015-12-05 20:07:52 +00:00
2016-01-06 17:05:46 +00:00
COMPATOBJ = \
reallocarray.o\
strlcat.o\
strlcpy.o
2015-12-26 19:11:59 +00:00
OBJ = ${SRC:.c=.o} ${COMPATOBJ}
2015-12-05 20:07:52 +00:00
all: $(BIN)
.o:
${CC} ${LDFLAGS} -o $@ ${LIBS}
2015-12-05 20:07:52 +00:00
.c.o:
${CC} -c ${CFLAGS} ${CPPFLAGS} -o $@ -c $<
2015-12-05 20:07:52 +00:00
dist:
rm -rf stagit-${VERSION}
mkdir -p stagit-${VERSION}
2015-12-05 20:07:52 +00:00
cp -f ${MAN1} ${HDR} ${SCRIPTS} ${SRC} ${COMPATSRC} ${DOC} \
Makefile config.def.h config.mk \
favicon.png logo.png style.css \
example.sh \
stagit-${VERSION}
2015-12-05 20:07:52 +00:00
# make tarball
tar -cf - stagit-${VERSION} | \
gzip -c > stagit-${VERSION}.tar.gz
rm -rf stagit-${VERSION}
2015-12-05 20:07:52 +00:00
${OBJ}: config.h config.mk ${HDR}
config.h:
@echo creating $@ from config.def.h
@cp config.def.h $@
2015-12-05 20:07:52 +00:00
stagit: stagit.o ${COMPATOBJ}
${CC} -o $@ stagit.o ${COMPATOBJ} ${LDFLAGS}
2015-12-05 20:07:52 +00:00
stagit-index: stagit-index.o ${COMPATOBJ}
${CC} -o $@ stagit-index.o ${COMPATOBJ} ${LDFLAGS}
2015-12-20 16:11:25 +00:00
2015-12-05 20:07:52 +00:00
clean:
rm -f ${BIN} ${OBJ}
install: all
# installing executable files.
mkdir -p ${DESTDIR}${PREFIX}/bin
cp -f ${BIN} ${SCRIPTS} ${DESTDIR}${PREFIX}/bin
for f in $(BIN) $(SCRIPTS); do chmod 755 ${DESTDIR}${PREFIX}/bin/$$f; done
# installing example files.
mkdir -p ${DESTDIR}${PREFIX}/share/${NAME}
cp -f style.css\
favicon.png\
2015-12-05 20:07:52 +00:00
logo.png\
example.sh\
2015-12-05 20:07:52 +00:00
README\
${DESTDIR}${PREFIX}/share/${NAME}
# installing manual pages.
mkdir -p ${DESTDIR}${MANPREFIX}/man1
cp -f ${MAN1} ${DESTDIR}${MANPREFIX}/man1
for m in $(MAN1); do chmod 644 ${DESTDIR}${MANPREFIX}/man1/$$m; done
uninstall:
# removing executable files and scripts.
for f in $(BIN) $(SCRIPTS); do rm -f ${DESTDIR}${PREFIX}/bin/$$f; done
# removing example files.
rm -f \
${DESTDIR}${PREFIX}/share/${NAME}/style.css\
${DESTDIR}${PREFIX}/share/${NAME}/favicon.png\
2015-12-05 20:07:52 +00:00
${DESTDIR}${PREFIX}/share/${NAME}/logo.png\
${DESTDIR}${PREFIX}/share/${NAME}/example.sh\
2015-12-05 20:07:52 +00:00
${DESTDIR}${PREFIX}/share/${NAME}/README
-rmdir ${DESTDIR}${PREFIX}/share/${NAME}
# removing manual pages.
for m in $(MAN1); do rm -f ${DESTDIR}${MANPREFIX}/man1/$$m; done
.PHONY: all clean dist install uninstall