aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 7652fd3..e8df845 100644
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,14 @@
.PHONY: all
+CC = clang
+CFLAGS = -std=c90 -Weverything
LDFLAGS = -lmrss
all : rssd
+rssd : rssd.c rssd.h
+ $(CC) $(CFLAGS) rssd.c $(LDFLAGS) -o rssd
+
clean :
rm -f rssd