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

13 lines
348 B
Makefile
Raw Normal View History

2015-11-05 18:31:40 -06:00
# makefile
all: dataserver simpleclient
reqchannel.o: reqchannel.h reqchannel.cpp
2015-11-05 19:37:44 -06:00
g++ -std=c++11 -c -g reqchannel.cpp
2015-11-05 18:31:40 -06:00
dataserver: dataserver.cpp reqchannel.o
2015-11-05 19:37:44 -06:00
g++ -std=c++11 -g -o dataserver dataserver.cpp reqchannel.o -lpthread
2015-11-05 18:31:40 -06:00
simpleclient: simpleclient.cpp reqchannel.o
2015-11-05 19:37:44 -06:00
g++ -std=c++11 -g -o simpleclient simpleclient.cpp reqchannel.o