summaryrefslogtreecommitdiffstats
path: root/worker/Makefile
blob: c4a2341f882402090b149f60155a89dbf41303f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

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

all: worker

$(OBJS): util.h

worker: worker.o debug.o
	$(CC) $(LDFLAGS) -o $@ $+


indent:
	indent $(INDENTFLAGS) $(SRCS)