stagit/Makefile

86 lines
1.9 KiB
Makefile
Raw Normal View History

2015-12-05 20:07:52 +00:00
include config.mk
NAME = stagit
2015-12-05 20:07:52 +00:00
VERSION = 0.1
SRC = \
stagit.c\
stagit-index.c
COMPATSRC = \
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
2015-12-26 19:11:59 +00:00
OBJ = ${SRC:.c=.o} ${COMPATOBJ}
2015-12-05 20:07:52 +00:00
all: $(BIN)
.c.o:
${CC} -c ${CFLAGS} $<
dist: $(BIN)
rm -rf release/${VERSION}
mkdir -p release/${VERSION}
cp -f ${MAN1} ${HDR} ${SCRIPTS} ${SRC} ${COMPATSRC} ${DOC} \
Makefile config.mk \
logo.png style.css \
release/${VERSION}/
# make tarball
rm -f stagit-${VERSION}.tar.gz
2015-12-05 20:07:52 +00:00
(cd release/${VERSION}; \
tar -czf ../../stagit-${VERSION}.tar.gz .)
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\
logo.png\
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}/logo.png\
${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