blob: 0226e3400ec72d93b47af2c357895aac7be37312 [file] [log] [blame]
WARNFLAGS=-Wall -Wshadow -W -Wformat -Wimplicit-function-declaration -Wimplicit-int
CFLAGS?=-O1 -g ${WARNFLAGS}
CC?=gcc
OBJS = powerdebug.o output.o sensor.o
powerdebug: $(OBJS) powerdebug.h
$(CC) ${CFLAGS} $(OBJS) -o powerdebug
All: powerdebug
clean:
rm -f powerdebug *.o