- CXXFLAGS=-g -Wall
- all: toyserver toyclient
- toyserver: toyserver.o pirserver.o
- $(CXX) -Wall -o $@ $^
- toyclient: toyclient.o pirclient.o
- $(CXX) -Wall -o $@ $^
- clean:
- -rm toyserver.o pirserver.o toyclient.o pirclient.o
- veryclean: clean
- -rm toyserver toyclient
|