16 lines
407 B
Makefile
16 lines
407 B
Makefile
# makefile
|
|
|
|
all: dataserver client
|
|
|
|
reqchannel.o: reqchannel.h reqchannel.cpp
|
|
g++ -std=c++11 -lpthread -c -g reqchannel.cpp
|
|
|
|
dataserver: dataserver.cpp reqchannel.o
|
|
g++ -std=c++11 -lpthread -g -o dataserver dataserver.cpp reqchannel.o
|
|
|
|
client: simpleclient.cpp reqchannel.o BoundedBuffer.cpp
|
|
g++ -std=c++11 -lpthread -g -o client simpleclient.cpp reqchannel.o BoundedBuffer.cpp
|
|
|
|
clean:
|
|
$(RM) *.o
|
|
|