]> rtime.felk.cvut.cz Git - frescor/fwp.git/blob - wme_test/Makefile
Added wme_test to fwp compilation tree. Updated Makefile.rules.
[frescor/fwp.git] / wme_test / Makefile
1 ifeq ($(SOURCES_DIR),)
2 # Non-OMK Makefile
3
4 PROGS = wserver wclient
5
6 all: $(PROGS) 
7 .PHONY:all
8
9 LDFLAGS = -lpthread  -lrt 
10 CFLAGS = -Wall -D_REENTRANT -g -O2
11 ifdef DEBUG
12 CFLAGS += -DDEBUG=1
13 endif
14
15 wserver: wserver.o common.o
16 wclient: wclient.o common.o
17
18 clean:
19         rm -rf ./*.o
20         rm -f $(PROGS)
21
22 else
23 # OMK leaf Makefile
24 include ../fwp/Makefile
25 endif