# generatepin for wireless wps
TARGET=generatepin

CFLAGS=-Wall
all:
	gcc -o $(TARGET) $(CFLAGS) wsc_gen_pin.c
clean:
	rm -f $(TARGET)
