st/Makefile

64 lines
1.5 KiB
Makefile
Raw Normal View History

# st - simple terminal
# See LICENSE file for copyright and license details.
2009-05-10 12:17:09 +00:00
include config.mk
2017-01-20 08:06:39 +00:00
SRC = st.c x.c
2009-05-10 12:17:09 +00:00
OBJ = ${SRC:.c=.o}
2009-05-10 12:17:09 +00:00
all: options st
options:
2009-05-10 12:17:09 +00:00
@echo st build options:
@echo "CFLAGS = ${CFLAGS}"
@echo "LDFLAGS = ${LDFLAGS}"
@echo "CC = ${CC}"
config.h:
cp config.def.h config.h
2009-05-10 12:17:09 +00:00
.c.o:
@echo CC $<
@${CC} -c ${CFLAGS} $<
2017-01-20 08:06:39 +00:00
st.o: config.h st.h win.h
x.o: arg.h st.h win.h
2009-06-16 00:33:38 +00:00
${OBJ}: config.h config.mk
2009-05-10 12:17:09 +00:00
st: ${OBJ}
@echo CC -o $@
@${CC} -o $@ ${OBJ} ${LDFLAGS}
clean:
2009-05-10 12:17:09 +00:00
@echo cleaning
@rm -f st ${OBJ} st-${VERSION}.tar.gz
dist: clean
2009-05-10 12:17:09 +00:00
@echo creating dist tarball
@mkdir -p st-${VERSION}
2015-03-16 21:17:30 +00:00
@cp -R LICENSE Makefile README config.mk config.def.h st.info st.1 arg.h ${SRC} st-${VERSION}
2009-05-10 12:17:09 +00:00
@tar -cf st-${VERSION}.tar st-${VERSION}
@gzip st-${VERSION}.tar
@rm -rf st-${VERSION}
install: all
@echo installing executable file to ${DESTDIR}${PREFIX}/bin
@mkdir -p ${DESTDIR}${PREFIX}/bin
@cp -f st ${DESTDIR}${PREFIX}/bin
@chmod 755 ${DESTDIR}${PREFIX}/bin/st
2010-09-02 00:02:56 +00:00
@echo installing manual page to ${DESTDIR}${MANPREFIX}/man1
@mkdir -p ${DESTDIR}${MANPREFIX}/man1
@sed "s/VERSION/${VERSION}/g" < st.1 > ${DESTDIR}${MANPREFIX}/man1/st.1
@chmod 644 ${DESTDIR}${MANPREFIX}/man1/st.1
@echo Please see the README file regarding the terminfo entry of st.
@tic -sx st.info
uninstall:
2009-05-10 12:17:09 +00:00
@echo removing executable file from ${DESTDIR}${PREFIX}/bin
@rm -f ${DESTDIR}${PREFIX}/bin/st
2010-09-02 00:02:56 +00:00
@echo removing manual page from ${DESTDIR}${MANPREFIX}/man1
2010-09-02 00:03:53 +00:00
@rm -f ${DESTDIR}${MANPREFIX}/man1/st.1
2009-05-10 12:17:09 +00:00
.PHONY: all options clean dist install uninstall