CC=gcc
CFLAGS +=
LIBS = -lmcm

all: wifi_rescan

wifi_rescan: main.c
	$(CC) -Wall -g $(CFLAGS) $^ -o $@ $(LIBS)
clean:
	rm -f wifi_rescan *.o
