summary refs log tree commit diff stats
path: root/plugins/python/makefile.mak
diff options
context:
space:
mode:
authorberkeviktor@aol.com <berkeviktor@aol.com>2010-08-24 20:03:18 +0200
committerberkeviktor@aol.com <berkeviktor@aol.com>2010-08-24 20:03:18 +0200
commitcbcf58aba6497db777fe41d0b9651d0b905c9605 (patch)
tree785a4061a6c7deca097b8568a7546a529740a65f /plugins/python/makefile.mak
parente0e70fccd444000c74ee505d790fbfb64e1ed1c2 (diff)
huge cleanup on build system
Diffstat (limited to 'plugins/python/makefile.mak')
-rw-r--r--plugins/python/makefile.mak4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/python/makefile.mak b/plugins/python/makefile.mak
index 1b71f40c..a0eb7b0c 100644
--- a/plugins/python/makefile.mak
+++ b/plugins/python/makefile.mak
@@ -11,10 +11,10 @@ python.def:
 	echo xchat_plugin_get_info >> python.def
 
 python.obj: python.c
-	$(CC) $(CFLAGS) /Dusleep=_sleep /DPATH_MAX=255 python.c $(GLIB) /I.. /I$(PYTHONPATH)\include /DPYTHON_DLL=\"$(PYTHONLIB).dll\"
+	$(CC) $(CFLAGS) /Dusleep=_sleep /DPATH_MAX=255 python.c $(GLIB) /I$(PYTHONPATH)\include /DPYTHON_DLL=\"$(PYTHONLIB).dll\"
 
 $(TARGET): python.obj python.def
-	$(LINK) /DLL /out:$(TARGET) $(LDFLAGS) python.obj /libpath:$(PYTHONPATH)\libs $(PYTHONLIB).lib $(LIBS) /def:python.def
+	$(LINK) /dll /out:$(TARGET) $(LDFLAGS) python.obj /libpath:$(PYTHONPATH)\libs $(PYTHONLIB).lib $(LIBS) /def:python.def
 
 clean:
 	del $(TARGET)