Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/lib/threadframe/GNUmakefile.mingw2
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <mpg@redhat.com>2007-04-06 18:13:37 (GMT)
committer Marco Pesenti Gritti <mpg@redhat.com>2007-04-06 18:13:37 (GMT)
commitc9c1117872bf47920c348f8cd0a6f6e8e470fac7 (patch)
tree661e8291bd595f8694a568c473ad7619ae7526ee /lib/threadframe/GNUmakefile.mingw2
parent9c0e0783dbbaa85bcbe94649281f69a26b656a3e (diff)
Remove the threadframe stuff which went unused.
Diffstat (limited to 'lib/threadframe/GNUmakefile.mingw2')
-rw-r--r--lib/threadframe/GNUmakefile.mingw218
1 files changed, 0 insertions, 18 deletions
diff --git a/lib/threadframe/GNUmakefile.mingw2 b/lib/threadframe/GNUmakefile.mingw2
deleted file mode 100644
index f5c0df4..0000000
--- a/lib/threadframe/GNUmakefile.mingw2
+++ /dev/null
@@ -1,18 +0,0 @@
-PYTHON:= $(shell python -c "import sys;print '%%d%%d' %% sys.version_info[:2]")
-
-threadframe.pyd: threadframe.o libpython$(PYTHON).a
- dllwrap --dllname threadframe.pyd --driver-name=gcc --def threadframe.def -o threadframe.pyd threadframe.o -s --entry _DllMain@12 --target=i386-mingw32 -L. -lpython$(PYTHON)
-
-threadframe.o: threadframemodule.c
- gcc -I"C:\Program Files\Python$(PYTHON)\include" -O3 -c -o $@ -DNDEBUG $<
-libpython$(PYTHON).a: python$(PYTHON).def C:\WINNT\system32\python$(PYTHON).dll
- dlltool --dllname python$(PYTHON).dll --def python$(PYTHON).def --output-lib libpython$(PYTHON).a
-
-python$(PYTHON).def: C:\WINNT\system32\python$(PYTHON).dll
- pexports C:\WINNT\system32\python$(PYTHON).dll > python$(PYTHON).def
-
-clean:
- -del threadframe.pyd
- -del libpython$(PYTHON).a
- -del threadframe.o
- -del python$(PYTHON).def