CC=gcc
CFLAGS=-Wall

PROG=ListenToPt100Logger

all: $(PROG)
	$(CC) -o $(PROG) $(PROG).c
	
clean:
	@rm -f $(PROG)
