JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
added some new files for the initial rewrite of st from scratch
[st.git] / Makefile
1 # st - simple terminal
2 # See LICENSE file for copyright and license details.
3
4 include config.mk
5
6 SRC = st
7 OBJ = ${SRC:.c=.o}
8
9 all: options st
10
11 options:
12         @echo st build options:
13         @echo "CFLAGS   = ${CFLAGS}"
14         @echo "LDFLAGS  = ${LDFLAGS}"
15         @echo "CC       = ${CC}"
16
17 .c.o:
18         @echo CC $<
19         @${CC} -c ${CFLAGS} $<
20
21 ${OBJ}: config.h config.mk
22
23 config.h:
24         @echo creating $@ from config.def.h
25         @cp config.def.h $@
26
27 st: ${OBJ}
28         @echo CC -o $@
29         @${CC} -o $@ ${OBJ} ${LDFLAGS}
30
31 clean:
32         @echo cleaning
33         @rm -f st ${OBJ} st-${VERSION}.tar.gz
34
35 dist: clean
36         @echo creating dist tarball
37         @mkdir -p st-${VERSION}
38         @cp -R LICENSE Makefile README config.def.h config.mk \
39                 st.1 ${SRC} st-${VERSION}
40         @tar -cf st-${VERSION}.tar st-${VERSION}
41         @gzip st-${VERSION}.tar
42         @rm -rf st-${VERSION}
43
44 install: all
45         @echo installing executable file to ${DESTDIR}${PREFIX}/bin
46         @mkdir -p ${DESTDIR}${PREFIX}/bin
47         @cp -f st ${DESTDIR}${PREFIX}/bin
48         @chmod 755 ${DESTDIR}${PREFIX}/bin/st
49         @echo installing manual page to ${DESTDIR}${MANPREFIX}/man1
50         @mkdir -p ${DESTDIR}${MANPREFIX}/man1
51         @sed "s/VERSION/${VERSION}/g" < st.1 > ${DESTDIR}${MANPREFIX}/man1/st.1
52         @chmod 644 ${DESTDIR}${MANPREFIX}/man1/st.1
53
54 uninstall:
55         @echo removing executable file from ${DESTDIR}${PREFIX}/bin
56         @rm -f ${DESTDIR}${PREFIX}/bin/st
57         @echo removing manual page from ${DESTDIR}${MANPREFIX}/man1
58         @rm -f ${DESTDIR}${MANPREFIX}/man1/st.1
59
60 .PHONY: all options clean dist install uninstall