Blame


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