summaryrefslogtreecommitdiffstats
path: root/worker/Makefile
blob: 36fbde761537ea2c07b5c25df8ec57981abef648 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

CFLAGS=-Wall -Werror `xml2-config --cflags`  `xslt-config --cflags`
LDFLAGS=`xml2-config --libs`  `xslt-config --libs`

SRCS = worker.c debug.c
OBJS = worker.o debug.o

all: worker

$(OBJS): util.h

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