8 lines
104 B
Makefile
8 lines
104 B
Makefile
all:SetNet
|
|
|
|
SetNet:GetNet.cpp
|
|
g++ -g -o setNet GetNet.cpp
|
|
mv ./setNet ../bin/
|
|
|
|
clean:
|
|
rm -rf ../bin/*
|