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

17 lines
407 B
Makefile
Raw Permalink Normal View History

2015-11-05 18:31:40 -06:00
# makefile
2015-11-13 10:02:10 -06:00
all: dataserver client
2015-11-05 18:31:40 -06:00
reqchannel.o: reqchannel.h reqchannel.cpp
2015-11-11 17:15:35 -06:00
g++ -std=c++11 -lpthread -c -g reqchannel.cpp
2015-11-05 18:31:40 -06:00
dataserver: dataserver.cpp reqchannel.o
2015-11-11 17:15:35 -06:00
g++ -std=c++11 -lpthread -g -o dataserver dataserver.cpp reqchannel.o
2015-11-05 18:31:40 -06:00
2015-11-13 10:02:10 -06:00
client: simpleclient.cpp reqchannel.o BoundedBuffer.cpp
g++ -std=c++11 -lpthread -g -o client simpleclient.cpp reqchannel.o BoundedBuffer.cpp
2015-11-06 12:15:31 -06:00
clean:
$(RM) *.o