Blame


1 8f16cb3e 2024-01-04 benni CFLAGS = -Wall -g -Og
2 8f16cb3e 2024-01-04 benni LIBS = -lutil -lncurses
3 8f16cb3e 2024-01-04 benni
4 8f16cb3e 2024-01-04 benni all: apmtop
5 8f16cb3e 2024-01-04 benni
6 8f16cb3e 2024-01-04 benni run: apmtop
7 8f16cb3e 2024-01-04 benni ./apmtop
8 8f16cb3e 2024-01-04 benni
9 8f16cb3e 2024-01-04 benni clean:
10 8f16cb3e 2024-01-04 benni rm -f apmtop *.core
11 8f16cb3e 2024-01-04 benni
12 8f16cb3e 2024-01-04 benni apmtop: apmtop.c
13 8f16cb3e 2024-01-04 benni ${CC} -o $@ apmtop.c ${CFLAGS} ${LIBS}