10 lines
337 B
Makefile
10 lines
337 B
Makefile
#Using MinGW distro from http://nuwen.net/mingw.html that contains boost precompiled
|
|
|
|
all:
|
|
g++ -O2 -std=c++11 -c main.cpp -D_WIN32_WINNT=0x0501
|
|
g++ -O2 -std=c++11 -c TimeoutSerial.cpp -D_WIN32_WINNT=0x0501
|
|
g++ -o timeout.exe main.o TimeoutSerial.o -s -lwsock32 -lws2_32 -lboost_system
|
|
|
|
clean:
|
|
del timeout.exe main.o TimeoutSerial.o
|