12 lines
348 B
Makefile
Executable file
12 lines
348 B
Makefile
Executable file
# makefile
|
|
|
|
all: dataserver simpleclient
|
|
|
|
reqchannel.o: reqchannel.h reqchannel.cpp
|
|
g++ -std=c++11 -c -g reqchannel.cpp
|
|
|
|
dataserver: dataserver.cpp reqchannel.o
|
|
g++ -std=c++11 -g -o dataserver dataserver.cpp reqchannel.o -lpthread
|
|
|
|
simpleclient: simpleclient.cpp reqchannel.o
|
|
g++ -std=c++11 -g -o simpleclient simpleclient.cpp reqchannel.o
|