all : gcodepath2 gcodepath2.exe gcodepath2 : gcodepath2.c gcc -o $@ $^ -Os -Wl,-s -lm gcodepath2.exe : gcodepath2.c i686-w64-mingw32-gcc -o $@ $^ -Os -Wl,-s -lm clean : rm -rf gcodepath2 gcodepath2.exe