QUOTE: Be your own kind of beautiful.
Minimal dynamic DNS updater
Makefile (176B)
1CC=cc 2CFLAGS=-Wall -Wextra -Werror -pedantic 3LIBS=-lcurl 4 5build: src/*.c 6 $(CC) -o dns $(CFLAGS) $(LIBS) $^ 7 8install: build 9 cp dns /usr/local/bin/ 10 rm ./dns 11 12clean: 13 rm ./dns