lots'o' wxpython modules files

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3345 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Harco de Hilster
1999-08-11 17:14:49 +00:00
parent 05394a18d4
commit 4b123bb9cc
43 changed files with 13441 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
#----------------------------------------------------------------------
TARGET = glcanvasc
OBJECTS = glcanvas.obj
PYMODULES = $(TARGETDIR)\html.py $(TARGETDIR)\htmlhelper.py
SOURCES = $(GENCODEDIR)\html.cpp
#----------------------------------------------------------------------
!include ..\makeinc.vc
# override this
EXTRAINC = $(EXTRAINC) -I$(WXDIR)\utils\glcanvas\win
GLLIBS=$(WXDIR)\lib\glcanvas.lib glu32.lib opengl32.lib
#----------------------------------------------------------------------
default: $(TARGETDIR)\$(TARGET).pyd pycfiles
all: $(TARGET)
#----------------------------------------------------------------------
$(TARGETDIR)\$(TARGET).pyd : $(DUMMYOBJ) $(WXLIB) $(OBJECTS) # $(TARGET).res
$(link) @<<
/out:$@ /dll
$(LFLAGS) /def:$(TARGET).def /implib:./$(TARGET).lib
$(DUMMYOBJ) $(OBJECTS)
$(LIBS) $(GLLIBS)
<<
#----------------------------------------------------------------------