f449ef69b4
toolbar usage in Dialog Editor git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@396 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
34 lines
680 B
Scala
34 lines
680 B
Scala
# Symantec C++ makefile for docview example
|
|
# NOTE that peripheral libraries are now dealt in main wxWindows makefile.
|
|
|
|
WXDIR = $(WXWIN)
|
|
include $(WXDIR)\src\makesc.env
|
|
|
|
WXLIB = $(WXDIR)\lib\wx.lib
|
|
INCDIR = $(WXDIR)\include
|
|
MSWINC = $(INCDIR)\msw
|
|
BASEINC = $(INCDIR)\base
|
|
|
|
INCLUDE=$(BASEINC);$(MSWINC)
|
|
|
|
LIBS=$(WXLIB) libw.lib commdlg.lib shell.lib
|
|
|
|
OBJECTS=docview.obj view.obj doc.obj
|
|
|
|
.$(SRCSUFF).obj:
|
|
*$(CC) -c $(CFLAGS) -I$(INCLUDE) $<
|
|
|
|
.rc.res:
|
|
*$(RC) -r -I$(INCLUDE) $<
|
|
|
|
docview.exe: $(OBJECTS) docview.def docview.res
|
|
*$(CC) $(LDFLAGS) -o$@ $(OBJECTS) docview.def $(LIBS)
|
|
*$(RC) -k docview.res
|
|
|
|
clean:
|
|
-del *.obj
|
|
-del *.exe
|
|
-del *.res
|
|
-del *.map
|
|
-del *.rws
|