CC=clang
CFLAGS=-Wall -Werror
CLIBS=-lm

all: getopt_example

getopt_example:
	$(CC) $(CFLAGS) getopt_example.c -o getopt_example

clean:
	rm getopt_example
