2014-06-23 00:39:21 +02:00
|
|
|
# sent - plain text presentation tool
|
|
|
|
# See LICENSE file for copyright and license details.
|
|
|
|
|
|
|
|
include config.mk
|
|
|
|
|
2015-04-05 15:48:47 +02:00
|
|
|
SRC = sent.c drw.c util.c
|
2014-06-23 00:39:21 +02:00
|
|
|
OBJ = ${SRC:.c=.o}
|
|
|
|
|
2015-01-19 04:27:54 +01:00
|
|
|
all: options sent
|
2014-06-23 00:39:21 +02:00
|
|
|
|
|
|
|
options:
|
|
|
|
@echo sent build options:
|
|
|
|
@echo "CFLAGS = ${CFLAGS}"
|
|
|
|
@echo "LDFLAGS = ${LDFLAGS}"
|
|
|
|
@echo "CC = ${CC}"
|
|
|
|
|
|
|
|
config.h:
|
|
|
|
cp config.def.h config.h
|
|
|
|
|
|
|
|
.c.o:
|
2023-01-09 18:27:12 +01:00
|
|
|
${CC} -c ${CFLAGS} $<
|
2014-06-23 00:39:21 +02:00
|
|
|
|
|
|
|
${OBJ}: config.h config.mk
|
|
|
|
|
|
|
|
sent: ${OBJ}
|
2023-01-09 18:27:12 +01:00
|
|
|
${CC} -o $@ ${OBJ} ${LDFLAGS}
|
2014-06-23 00:39:21 +02:00
|
|
|
|
|
|
|
cscope: ${SRC} config.h
|
2023-01-09 18:27:12 +01:00
|
|
|
cscope -R -b || echo cScope not installed
|
2014-06-23 00:39:21 +02:00
|
|
|
|
|
|
|
clean:
|
2023-01-09 18:27:12 +01:00
|
|
|
rm -f sent ${OBJ} sent-${VERSION}.tar.gz
|
2014-06-23 00:39:21 +02:00
|
|
|
|
|
|
|
dist: clean
|
2023-01-09 18:27:12 +01:00
|
|
|
mkdir -p sent-${VERSION}
|
|
|
|
cp -R LICENSE Makefile config.mk config.def.h ${SRC} sent-${VERSION}
|
|
|
|
tar -cf sent-${VERSION}.tar sent-${VERSION}
|
|
|
|
gzip sent-${VERSION}.tar
|
|
|
|
rm -rf sent-${VERSION}
|
2014-06-23 00:39:21 +02:00
|
|
|
|
|
|
|
install: all
|
2023-01-09 18:27:12 +01:00
|
|
|
mkdir -p ${DESTDIR}${PREFIX}/bin
|
|
|
|
cp -f sent ${DESTDIR}${PREFIX}/bin
|
|
|
|
chmod 755 ${DESTDIR}${PREFIX}/bin/sent
|
|
|
|
mkdir -p ${DESTDIR}${MANPREFIX}/man1
|
|
|
|
cp sent.1 ${DESTDIR}${MANPREFIX}/man1/sent.1
|
|
|
|
chmod 644 ${DESTDIR}${MANPREFIX}/man1/sent.1
|
2014-06-23 00:39:21 +02:00
|
|
|
|
|
|
|
uninstall:
|
2023-01-09 18:27:12 +01:00
|
|
|
rm -f ${DESTDIR}${PREFIX}/bin/sent
|
2014-06-23 00:39:21 +02:00
|
|
|
|
|
|
|
.PHONY: all options clean dist install uninstall cscope
|