blob: 295b7cb9317d81c4d93f9788045a0a3e8f6c228b [file] [log] [blame]
Marcin Juszkiewicz807e4fa2011-01-12 17:25:16 -06001BINDIR=/usr/sbin
Amit Arora39f29542010-09-14 12:03:22 +05302MANDIR=/usr/share/man/man8
3
Daniel Lezcano00af33e2011-05-24 15:27:49 +02004CFLAGS?=-O1 -g -Wall -Wshadow
Amit Arorae9e16b02010-08-03 10:15:20 +05305CC?=gcc
6
Amit Arora17552782010-12-02 12:23:14 +05307OBJS = powerdebug.o sensor.o clocks.o regulator.o display.o
Amit Arora728e0c92010-09-14 12:06:09 +05308
9default: powerdebug
Amit Arorae9e16b02010-08-03 10:15:20 +053010
Amit Arora39f29542010-09-14 12:03:22 +053011powerdebug.8.gz: powerdebug.8
12 gzip -c $< > $@
Amit Arorae9e16b02010-08-03 10:15:20 +053013
14powerdebug: $(OBJS) powerdebug.h
Amit Arora39f29542010-09-14 12:03:22 +053015 $(CC) ${CFLAGS} $(OBJS) -lncurses -o powerdebug
Amit Arorae9e16b02010-08-03 10:15:20 +053016
Amit Arora39f29542010-09-14 12:03:22 +053017install: powerdebug powerdebug.8.gz
Marcin Juszkiewicz807e4fa2011-01-12 17:25:16 -060018 install -d ${DESTDIR}${BINDIR} ${DESTDIR}${MANDIR}
19 install -m 0755 powerdebug ${DESTDIR}${BINDIR}
20 install -m 0644 powerdebug.8.gz ${DESTDIR}${MANDIR}
Amit Arorae9e16b02010-08-03 10:15:20 +053021
Amit Arora728e0c92010-09-14 12:06:09 +053022all: powerdebug powerdebug.8.gz
23
Amit Arorae9e16b02010-08-03 10:15:20 +053024clean:
Daniel Lezcano00af33e2011-05-24 15:27:49 +020025 rm -f powerdebug ${OBJS} powerdebug.8.gz