From: Martin v. Löwis Date: Sat, 10 Jun 2006 07:46:49 +0000 (+0000) Subject: Add cygwin makefile. X-Git-Tag: v2.4.4c1~187 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=467f1315f1e7903bb79dbc779a4e64cf8560efad;p=thirdparty%2FPython%2Fcpython.git Add cygwin makefile. --- diff --git a/Tools/buildbot/Makefile b/Tools/buildbot/Makefile new file mode 100644 index 000000000000..166023184819 --- /dev/null +++ b/Tools/buildbot/Makefile @@ -0,0 +1,6 @@ +all: kill_python.exe + ./kill_python.exe + +kill_python.exe: kill_python.c + gcc -o kill_python.exe kill_python.c -lpsapi +