CC = clang

all:
	$(CC) -std=c99 -ggdb -o shorturl -lcurl src/main.c src/shorturl.c

clean:
	rm -rf shorturl *.o
