blob: 0226e3400ec72d93b47af2c357895aac7be37312 [file] [log] [blame]
Amit Arorae9e16b02010-08-03 10:15:20 +05301WARNFLAGS=-Wall -Wshadow -W -Wformat -Wimplicit-function-declaration -Wimplicit-int
2CFLAGS?=-O1 -g ${WARNFLAGS}
3CC?=gcc
4
5OBJS = powerdebug.o output.o sensor.o
6
7
8powerdebug: $(OBJS) powerdebug.h
9 $(CC) ${CFLAGS} $(OBJS) -o powerdebug
10
11All: powerdebug
12
13clean:
14 rm -f powerdebug *.o