blob: 9b8d07ec80aa010a05a4f67c709fa8fe74b1f74d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
CXX=g++
CXXFLAGS=-g -O2
LDFLAGS=-lqpidmessaging
all: drain spout client server map_sender map_receiver hello_world
drain: drain.o OptionParser.o
spout: spout.o OptionParser.o
clean:
rm -f drain spout client server map_sender map_receiver hello_world *.o
|