summaryrefslogtreecommitdiff
path: root/code/test/Makefile
blob: 02ade871805edacfa62c25852081266145a72321 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
CFLAGS=-I.. -O3 -Wno-int-to-void-pointer-cast
LDFLAGS=-lm -pthread
dep=../libecpcore.a ../crypto/libecpcr.a ../htable/libecpht.a ../posix/libecptr.a ../posix/libecptm.a ../init.o

%.o: %.c
	$(CC) $(CFLAGS) -c $<

all: server stress

server: server.o $(dep)
	$(CC) $< $(dep) $(LDFLAGS) -o $@

stress: stress.o $(dep)
	$(CC) $< $(dep) $(LDFLAGS) -o $@

clean:
	rm -f *.o
	rm -f server stress