Blame


1 1636ee78 2024-01-11 benni VERSION = 0.3.1
2 d27e2808 2024-01-04 benni PREFIX = /usr/local
3 d2618eef 2024-01-11 benni MANPREFIX = ${PREFIX}/man
4 7fd8efc3 2024-01-04 benni MY_CFLAGS = -Wall -Wextra -DVERSION=\"${VERSION}\" ${CFLAGS}
5 8f16cb3e 2024-01-04 benni LIBS = -lutil -lncurses
6 8f16cb3e 2024-01-04 benni
7 8f16cb3e 2024-01-04 benni all: apmtop
8 8f16cb3e 2024-01-04 benni
9 8f16cb3e 2024-01-04 benni run: apmtop
10 8f16cb3e 2024-01-04 benni ./apmtop
11 8f16cb3e 2024-01-04 benni
12 8f16cb3e 2024-01-04 benni clean:
13 8f16cb3e 2024-01-04 benni rm -f apmtop *.core
14 8f16cb3e 2024-01-04 benni
15 d27e2808 2024-01-04 benni install:
16 d2618eef 2024-01-11 benni mkdir -p ${DESTDIR}${PREFIX}/bin ${DESTDIR}${MANPREFIX}/man1
17 d27e2808 2024-01-04 benni cp -f apmtop ${DESTDIR}${PREFIX}/bin/
18 1636ee78 2024-01-11 benni cp -f apmtop.1 ${DESTDIR}${MANPREFIX}/man1/
19 d27e2808 2024-01-04 benni
20 8f16cb3e 2024-01-04 benni apmtop: apmtop.c
21 7fd8efc3 2024-01-04 benni ${CC} -o $@ apmtop.c ${MY_CFLAGS} ${LIBS}