]> rtime.felk.cvut.cz Git - frescor/fwp.git/blob - wme_test/Makefile.std
Removed unused fwp_vres_get_id()
[frescor/fwp.git] / wme_test / Makefile.std
1 # Non-OMK Makefile
2
3 PROGS = wserver wclient schedlat
4
5 all: $(PROGS) 
6 .PHONY:all
7
8 LDFLAGS = -lpthread  -lrt -lncurses
9 CFLAGS += -Wall -D_REENTRANT -g -O2
10 ifdef DEBUG
11 CFLAGS += -DDEBUG=1
12 endif
13
14 wserver: wserver.o common.o
15 wclient: wclient.o common.o
16 schedlat: schedlat.o common.o
17
18 clean:
19         rm -rf ./*.o
20         rm -f $(PROGS)