Merge branch 'newpc92timings' of /scm/spider into newpc92timings
[spider.git] / src / Makefile
1 #
2 # makefile for the C programs for the DXSpider node
3 #
4
5 CFLAGS = -g -O
6
7 CLIENTOBJ = client.o sel.o cmsg.o chain.o debug.o
8 CLIENTBIN = client
9
10 $(CLIENTBIN) : $(CLIENTOBJ)
11         $(CC) $(CFLAGS) $(CLIENTOBJ) -o $(CLIENTBIN) 
12
13 clean:
14         rm -f $(CLIENTOBJ) $(CLIENTBIN) *~