telldus/examples/c/sensors/polling/Makefile
2011-05-18 11:12:10 +00:00

13 lines
164 B
Makefile

CC=gcc
CFLAGS=-Wall -ltelldus-core
OBJS = main.o
all: ${OBJS}
${CC} -o sensor ${CFLAGS} ${OBJS}
main.c:
${CC} ${CFLAGS} -c main.c
clean:
rm -f sensor main.o