]> git.saurik.com Git - wxWidgets.git/blob - utils/wxPython/modules/lseditor/makefile.vc
small makefile.vc fixes.
[wxWidgets.git] / utils / wxPython / modules / lseditor / makefile.vc
1
2 #----------------------------------------------------------------------
3
4 TARGET = lseditorc
5
6 OBJECTS = lseditor.obj finddlg.obj lseditorpl.obj markup.obj \
7 plugin.obj sourcepainter.obj tdefs.objhtml.obj
8
9 PYMODULES = $(TARGETDIR)\lseditor.py
10
11 SOURCES = $(GENCODEDIR)/lseditor.cpp finddlg.cpp lseditorpl.cpp markup.cpp \
12 plugin.cpp sourcepainter.cpp tdefs.cpp
13
14
15 #----------------------------------------------------------------------
16
17 !include ..\makeinc.vc
18 # undo overrideflags /GX- ...
19 OVERRIDEFLAGS=$(OTHERCFLAGS)
20
21 #----------------------------------------------------------------------
22
23 default: $(TARGETDIR)\$(TARGET).pyd pycfiles
24
25 all: $(TARGET)
26
27 # for generating the html.cpp file
28 $(GENCODEDIR)/lseditor.cpp : lseditor.i
29
30 #----------------------------------------------------------------------
31
32 $(TARGETDIR)\$(TARGET).pyd : $(DUMMYOBJ) $(WXLIB) $(OBJECTS) # $(TARGET).res
33 $(link) @<<
34 /out:$@ /dll
35 $(LFLAGS) /def:$(TARGET).def /implib:./$(TARGET).lib
36 $(DUMMYOBJ) $(OBJECTS)
37 $(LIBS)
38 <<
39
40
41 #----------------------------------------------------------------------
42