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-13 10:02:10 -06:00

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