]> git.saurik.com Git - wxWidgets.git/blob - utils/wxPython/modules/stubs/makefile.vc
README file (sparse) added.
[wxWidgets.git] / utils / wxPython / modules / stubs / makefile.vc
1
2 #----------------------------------------------------------------------
3
4 TARGET = samplec
5
6 OBJECTS = sample.obj mywidget.obj
7
8 PYMODULES = $(TARGETDIR)\sample.py $(TARGETDIR)\sample.py
9
10 SOURCES = $(GENCODEDIR)\sample.cpp mywidget.cpp
11
12
13 #----------------------------------------------------------------------
14
15 !include ..\makeinc.vc
16
17 #----------------------------------------------------------------------
18
19 default: $(TARGETDIR)\$(TARGET).pyd pycfiles
20
21 all: $(TARGET)
22
23 #----------------------------------------------------------------------
24
25 $(TARGETDIR)\$(TARGET).pyd : $(DUMMYOBJ) $(WXLIB) $(OBJECTS) # $(TARGET).res
26 $(link) @<<
27 /out:$@ /dll
28 $(LFLAGS) /def:$(TARGET).def /implib:./$(TARGET).lib
29 $(DUMMYOBJ) $(OBJECTS)
30 $(LIBS)
31 <<
32
33
34 #----------------------------------------------------------------------
35