fix some more samples for digital mars

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21127 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Chris Elliott
2003-06-13 20:26:54 +00:00
parent 245f35816d
commit 31bb77da45
5 changed files with 19 additions and 75 deletions

View File

@@ -1,4 +1,6 @@
# Symantec C++ makefile
WXDIR = $(WXWIN)
#Makefile from wxHatch for Symantec/Digital Mars compiler
WXDIR=..\..\..\wxWindows
TARGET=image
include $(WXDIR)\src\makeprog.sc
OBJECTS = $(TARGET).obj
EXTRALIBS =
include $(WXDIR)\src\makeprog.sc

View File

@@ -1,35 +1,6 @@
# Symantec C++ makefile for minimal 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
CC=sc
RC=rc
CFLAGS = -o -ml -W -Dwx_msw
LDFLAGS = -ml -W
INCLUDE=$(BASEINC);$(MSWINC)
LIBS=$(WXLIB) libw.lib commdlg.lib shell.lib
.$(SRCSUFF).obj:
*$(CC) -c $(CFLAGS) -I$(INCLUDE) $<
.rc.res:
*$(RC) -r -I$(INCLUDE) $<
minimal.exe: minimal.obj minimal.def minimal.res
*$(CC) $(LDFLAGS) -o$@ $** $(LIBS)
clean:
-del *.obj
-del *.exe
-del *.res
-del *.map
-del *.rws
#Makefile from wxHatch for Symantec/Digital Mars compiler
WXDIR=..\..\..\wxWindows
TARGET=internat
OBJECTS = $(TARGET).obj
EXTRALIBS =
include $(WXDIR)\src\makeprog.sc

View File

@@ -1,37 +1,6 @@
# Symantec C++ makefile for layout 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
CC=sc
RC=rc
CFLAGS = -o -ml -W -Dwx_msw
LDFLAGS = -ml -W
INCLUDE=$(BASEINC);$(MSWINC)
LIBS=$(WXLIB) libw.lib commdlg.lib shell.lib
.$(SRCSUFF).obj:
*$(CC) -c $(CFLAGS) -I$(INCLUDE) $<
.rc.res:
*$(RC) -r -I$(INCLUDE) $<
layout.exe: layout.obj layout.def layout.res
*$(CC) $(LDFLAGS) -o$@ layout.obj layout.def $(LIBS)
*$(RC) -k layout.res
clean:
-del *.obj
-del *.exe
-del *.res
-del *.map
-del *.rws
#Makefile from wxHatch for Symantec/Digital Mars compiler
WXDIR=..\..\..\wxWindows
TARGET=layout
OBJECTS = $(TARGET).obj
EXTRALIBS =
include $(WXDIR)\src\makeprog.sc

View File

@@ -1,4 +1,5 @@
# Digital Mars / Symantec C++ makefile
WXDIR = ..\..
TARGET=mdi
OBJECTS = $(TARGET).obj
include $(WXDIR)\src\makeprog.sc

View File

@@ -1,4 +1,5 @@
# Digital Mars / Symantec C++ makefile
WXDIR = ..\..
TARGET=minimal
OBJECTS = $(TARGET).obj
include $(WXDIR)\src\makeprog.sc