This repository has been archived on 2025-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
csce313-mp4pinie64backup/makefile
2015-11-06 12:15:31 -06:00

16 lines
404 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 BoundedBuffer.cpp
g++ -std=c++11 -g -o simpleclient simpleclient.cpp reqchannel.o BoundedBuffer.cpp
clean:
$(RM) *.o