]> rtime.felk.cvut.cz Git - frescor/fwp.git/blob - wme_test/Makefile
Merge branch 'master' of rtime:/var/git/frescor
[frescor/fwp.git] / wme_test / Makefile
1 PROGS = wserver wclient
2
3 all: $(PROGS) 
4 .PHONY:all
5
6 LDFLAGS = -lpthread  -lrt 
7 CFLAGS = -Wall -D_REENTRANT -g
8 ifdef DEBUG
9 CFLAGS += -DDEBUG=1
10 endif
11
12 wserver: wserver.o common.o
13 wclient: wclient.o common.o
14
15 clean:
16         rm -rf ./*.o
17         rm -f $(PROGS)
18