summaryrefslogtreecommitdiffstats
path: root/worker/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'worker/Makefile')
-rw-r--r--worker/Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/worker/Makefile b/worker/Makefile
index 36fbde7..c4a2341 100644
--- a/worker/Makefile
+++ b/worker/Makefile
@@ -1,6 +1,7 @@
CFLAGS=-Wall -Werror `xml2-config --cflags` `xslt-config --cflags`
LDFLAGS=`xml2-config --libs` `xslt-config --libs`
+INDENTFLAGS=-kr -nut -l80
SRCS = worker.c debug.c
OBJS = worker.o debug.o
@@ -11,3 +12,7 @@ $(OBJS): util.h
worker: worker.o debug.o
$(CC) $(LDFLAGS) -o $@ $+
+
+
+indent:
+ indent $(INDENTFLAGS) $(SRCS)