--- /dev/null
+#Digital Mars (was Symantec) C++ makefile
+WXDIR = $(WXWIN)
+EXTRALIBS=
+TARGET=checklst
+OBJECTS = $(TARGET).obj
+include $(WXDIR)\src\makeprog.sc
--- /dev/null
+#Digital Mars (was Symantec) C++ makefile
+WXDIR = $(WXWIN)
+EXTRALIBS=
+TARGET=console
+OBJECTS = $(TARGET).obj
+include $(WXDIR)\src\makeprog.sc
--- /dev/null
+#Digital Mars (was Symantec) C++ makefile
+WXDIR = $(WXWIN)
+EXTRALIBS=
+TARGET=dbtest
+OBJECTS = $(TARGET).obj listdb.obj
+include $(WXDIR)\src\makeprog.sc
# Symantec C++ makefile
WXDIR = ..\..
+EXTRALIBS=
TARGET=dialogs
-include $(WXDIR)\src\makeprog.sc
+OBJECTS = $(TARGET).obj
+include $(WXDIR)\src\makeprog.sc
+
--- /dev/null
+#Digital Mars (was Symantec) C++ makefile
+WXDIR = $(WXWIN)
+EXTRALIBS=
+TARGET=nettest
+OBJECTS = $(TARGET).obj
+include $(WXDIR)\src\makeprog.sc
--- /dev/null
+#Makefile from wxHatch for Symantec/Digital Mars compiler
+WXDIR=..\..\..\wxWindows
+TARGET=display
+OBJECTS = $(TARGET).obj
+EXTRALIBS =
+include $(WXDIR)\src\makeprog.sc
--- /dev/null
+#Digital Mars (was Symantec) C++ makefile
+WXDIR = $(WXWIN)
+EXTRALIBS=
+TARGET=dnd
+OBJECTS = $(TARGET).obj
+include $(WXDIR)\src\makeprog.sc
-# 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
-
-CC=sc
-RC=rc
-CFLAGS = -o -ml -W -Dwx_msw
-LDFLAGS = -ml -W
-
-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
+#Makefile from wxHatch for Symantec/Digital Mars compiler
+WXDIR=..\..\..\wxWindows
+TARGET=docview
+OBJECTS = $(TARGET).obj doc.obj view.obj
+EXTRALIBS =
+include $(WXDIR)\src\makeprog.sc
--- /dev/null
+#Digital Mars (was Symantec) C++ makefile
+WXDIR = $(WXWIN)
+EXTRALIBS=
+TARGET=docview
+OBJECTS = $(TARGET).obj view.obj doc.obj
+include $(WXDIR)\src\makeprog.sc
-# Purpose: makefile for dragimag example (Symantec C++)
-# Created: 2000-03-15
-
-WXDIR = $(WXWIN)
-WXLIB = $(WXDIR)\lib\wx.lib
-INCDIR = $(WXDIR)\include
-INCLUDE=$(INCDIR)
+#Makefile from wxHatch for Symantec/Digital Mars compiler
+WXDIR=..\..\..\wxWindows
TARGET=dragimag
-
-include $(WXDIR)\src\makesc.env
-
-dragimag.exe: dragimag.obj $(DEFFILE) dragimag.res
- *$(CC) $(LDFLAGS) -o$@ $** $(LIBS)
- *$(RC) -k dragimag.res
-
-sc32.def:
- echo EXETYPE NT > sc32.def
- echo SUBSYSTEM WINDOWS >> sc32.def
-
-sc16.def:
- echo NAME $(TARGET) > sc16.def
- echo EXETYPE WINDOWS >> sc16.def
- echo STUB 'WINSTUB.EXE' >> sc16.def
- echo CODE PRELOAD MOVEABLE DISCARDABLE >> sc16.def
- echo DATA PRELOAD MOVEABLE MULTIPLE >> sc16.def
- echo HEAPSIZE 1024 >> sc16.def
- echo STACKSIZE 8192 >> sc16.def
-
-clean:
- -del *.obj
- -del *.exe
- -del *.res
- -del *.map
- -del *.rws
- -del sc32.def
- -del sc16.def
-
+OBJECTS = $(TARGET).obj
+EXTRALIBS =
+include $(WXDIR)\src\makeprog.sc
--- /dev/null
+#Digital Mars (was Symantec) C++ makefile
+WXDIR = $(WXWIN)
+EXTRALIBS=
+TARGET=drawing
+OBJECTS = $(TARGET).obj
+include $(WXDIR)\src\makeprog.sc
--- /dev/null
+#Digital Mars (was Symantec) C++ makefile
+WXDIR = $(WXWIN)
+EXTRALIBS=
+TARGET=dynamic
+OBJECTS = $(TARGET).obj
+include $(WXDIR)\src\makeprog.sc
-# Symantec C++ makefile
-
+#Digital Mars (was Symantec) C++ makefile
WXDIR = $(WXWIN)
-WXLIB = $(WXDIR)\lib\wx.lib
-INCDIR = $(WXDIR)\include
-INCLUDE=$(INCDIR)
+EXTRALIBS=
TARGET=erase
-
-include $(WXDIR)\src\makesc.env
-
-minimal.exe: minimal.obj $(DEFFILE) minimal.res
- *$(CC) $(LDFLAGS) -o$@ $** $(LIBS)
- *$(RC) -k minimal.res
-
-sc32.def:
- echo EXETYPE NT > sc32.def
- echo SUBSYSTEM WINDOWS >> sc32.def
-
-sc16.def:
- echo NAME $(TARGET) > sc16.def
- echo EXETYPE WINDOWS >> sc16.def
- echo STUB 'WINSTUB.EXE' >> sc16.def
- echo CODE PRELOAD MOVEABLE DISCARDABLE >> sc16.def
- echo DATA PRELOAD MOVEABLE MULTIPLE >> sc16.def
- echo HEAPSIZE 1024 >> sc16.def
- echo STACKSIZE 8192 >> sc16.def
-
-clean:
- -del *.obj
- -del *.exe
- -del *.res
- -del *.map
- -del *.rws
- -del sc32.def
- -del sc16.def
-
+OBJECTS = $(TARGET).obj
+include $(WXDIR)\src\makeprog.sc
-# Purpose: makefile for event example (Symantec C++)
-# Created: 2001-01-31
-
-WXDIR = $(WXWIN)
-WXLIB = $(WXDIR)\lib\wx.lib
-INCDIR = $(WXDIR)\include
-INCLUDE=$(INCDIR)
+#Makefile from wxHatch for Symantec/Digital Mars compiler
+WXDIR=..\..\..\wxWindows
TARGET=event
-
-include $(WXDIR)\src\makesc.env
-
-event.exe: event.obj $(DEFFILE) event.res
- *$(CC) $(LDFLAGS) -o$@ $** $(LIBS)
- *$(RC) -k event.res
-
-sc32.def:
- echo EXETYPE NT > sc32.def
- echo SUBSYSTEM WINDOWS >> sc32.def
-
-sc16.def:
- echo NAME $(TARGET) > sc16.def
- echo EXETYPE WINDOWS >> sc16.def
- echo STUB 'WINSTUB.EXE' >> sc16.def
- echo CODE PRELOAD MOVEABLE DISCARDABLE >> sc16.def
- echo DATA PRELOAD MOVEABLE MULTIPLE >> sc16.def
- echo HEAPSIZE 1024 >> sc16.def
- echo STACKSIZE 8192 >> sc16.def
-
-clean:
- -del *.obj
- -del *.exe
- -del *.res
- -del *.map
- -del *.rws
- -del sc32.def
- -del sc16.def
-
+OBJECTS = $(TARGET).obj
+EXTRALIBS =
+include $(WXDIR)\src\makeprog.sc
-# Purpose: makefile for exec example (Symantec C++)
-# Created: 2000-03-14
-
-WXDIR = $(WXWIN)
-WXLIB = $(WXDIR)\lib\wx.lib
-INCDIR = $(WXDIR)\include
-INCLUDE=$(INCDIR)
+#Makefile from wxHatch for Symantec/Digital Mars compiler
+WXDIR=..\..\..\wxWindows
TARGET=exec
-
-include $(WXDIR)\src\makesc.env
-
-exec.exe: exec.obj $(DEFFILE) exec.res
- *$(CC) $(LDFLAGS) -o$@ $** $(LIBS)
- *$(RC) -k exec.res
-
-sc32.def:
- echo EXETYPE NT > sc32.def
- echo SUBSYSTEM WINDOWS >> sc32.def
-
-sc16.def:
- echo NAME $(TARGET) > sc16.def
- echo EXETYPE WINDOWS >> sc16.def
- echo STUB 'WINSTUB.EXE' >> sc16.def
- echo CODE PRELOAD MOVEABLE DISCARDABLE >> sc16.def
- echo DATA PRELOAD MOVEABLE MULTIPLE >> sc16.def
- echo HEAPSIZE 1024 >> sc16.def
- echo STACKSIZE 8192 >> sc16.def
-
-clean:
- -del *.obj
- -del *.exe
- -del *.res
- -del *.map
- -del *.rws
- -del sc32.def
- -del sc16.def
-
+OBJECTS = $(TARGET).obj
+EXTRALIBS =
+include $(WXDIR)\src\makeprog.sc
--- /dev/null
+#Digital Mars (was Symantec) C++ makefile
+WXDIR = $(WXWIN)
+EXTRALIBS=
+TARGET=font
+OBJECTS = $(TARGET).obj
+include $(WXDIR)\src\makeprog.sc
-# Symantec C++ makefile
-
+#Digital Mars (was Symantec) C++ makefile
WXDIR = $(WXWIN)
-WXLIB = $(WXDIR)\lib\wx.lib
-INCDIR = $(WXDIR)\include
-INCLUDE=$(INCDIR)
+EXTRALIBS=
TARGET=griddemo
-
-include $(WXDIR)\src\makesc.env
-
-griddemo.exe: griddemo.obj $(DEFFILE) griddemo.res
- *$(CC) $(LDFLAGS) -o$@ $** $(LIBS)
- *$(RC) -k griddemo.res
-
-sc32.def:
- echo EXETYPE NT > sc32.def
- echo SUBSYSTEM WINDOWS >> sc32.def
-
-sc16.def:
- echo NAME $(TARGET) > sc16.def
- echo EXETYPE WINDOWS >> sc16.def
- echo STUB 'WINSTUB.EXE' >> sc16.def
- echo CODE PRELOAD MOVEABLE DISCARDABLE >> sc16.def
- echo DATA PRELOAD MOVEABLE MULTIPLE >> sc16.def
- echo HEAPSIZE 1024 >> sc16.def
- echo STACKSIZE 8192 >> sc16.def
-
-clean:
- -del *.obj
- -del *.exe
- -del *.res
- -del *.map
- -del *.rws
- -del sc32.def
- -del sc16.def
-
+OBJECTS= $(TARGET).obj
+include $(WXDIR)\src\makeprog.sc
--- /dev/null
+#Digital Mars (was Symantec) C++ makefile
+WXDIR = $(WXWIN)
+EXTRALIBS=
+TARGET=demo
+OBJECTS = $(TARGET).obj
+include $(WXDIR)\src\makeprog.sc
--- /dev/null
+#Makefile from wxHatch for Symantec/Digital Mars compiler
+WXDIR=..\..\..\wxWindows
+TARGET=htlbox
+OBJECTS = $(TARGET).obj
+EXTRALIBS =
+include $(WXDIR)\src\makeprog.sc
--- /dev/null
+#Makefile from wxHatch for Symantec/Digital Mars compiler
+WXDIR=..\..\..\..\wxWindows
+TARGET=about
+OBJECTS = $(TARGET).obj
+EXTRALIBS =
+include $(WXDIR)\src\makeprog.sc
--- /dev/null
+#Makefile from wxHatch for Symantec/Digital Mars compiler
+WXDIR=..\..\..\..\wxWindows
+TARGET=help
+OBJECTS = $(TARGET).obj
+EXTRALIBS =
+include $(WXDIR)\src\makeprog.sc
--- /dev/null
+#Makefile from wxHatch for Symantec/Digital Mars compiler
+WXDIR=..\..\..\..\wxWindows
+TARGET=printing
+OBJECTS = $(TARGET).obj
+EXTRALIBS =
+include $(WXDIR)\src\makeprog.sc
-# Symantec C++ makefile
-
-WXDIR = $(WXWIN)
-
+#Makefile from wxHatch for Symantec/Digital Mars compiler
+WXDIR=..\..\..\..\wxWindows
TARGET=test
-
+OBJECTS = $(TARGET).obj
+EXTRALIBS =
include $(WXDIR)\src\makeprog.sc
-
-
--- /dev/null
+#Makefile from wxHatch for Symantec/Digital Mars compiler
+WXDIR=..\..\..\..\wxWindows
+TARGET=virtual
+OBJECTS = $(TARGET).obj
+EXTRALIBS =
+include $(WXDIR)\src\makeprog.sc
--- /dev/null
+#Makefile from wxHatch for Symantec/Digital Mars compiler
+WXDIR=..\..\..\..\wxWindows
+TARGET=widget
+OBJECTS = $(TARGET).obj
+EXTRALIBS =
+include $(WXDIR)\src\makeprog.sc
--- /dev/null
+#Makefile from wxHatch for Symantec/Digital Mars compiler
+WXDIR=..\..\..\..\wxWindows
+TARGET=zip
+OBJECTS = $(TARGET).obj
+EXTRALIBS =
+include $(WXDIR)\src\makeprog.sc
-# Purpose: makefile for joytest example (Symantec C++)
-# Created: 2000-03-14
-
+#Digital Mars (was Symantec) C++ makefile
WXDIR = $(WXWIN)
-WXLIB = $(WXDIR)\lib\wx.lib
-INCDIR = $(WXDIR)\include
-INCLUDE=$(INCDIR)
-TARGET=joytest
-
-include $(WXDIR)\src\makesc.env
-
-joytest.exe: joytest.obj $(DEFFILE) joytest.res
- *$(CC) $(LDFLAGS) -o$@ $** $(LIBS)
- *$(RC) -k joytest.res
-
-sc32.def:
- echo EXETYPE NT > sc32.def
- echo SUBSYSTEM WINDOWS >> sc32.def
-
-sc16.def:
- echo NAME $(TARGET) > sc16.def
- echo EXETYPE WINDOWS >> sc16.def
- echo STUB 'WINSTUB.EXE' >> sc16.def
- echo CODE PRELOAD MOVEABLE DISCARDABLE >> sc16.def
- echo DATA PRELOAD MOVEABLE MULTIPLE >> sc16.def
- echo HEAPSIZE 1024 >> sc16.def
- echo STACKSIZE 8192 >> sc16.def
-
-clean:
- -del *.obj
- -del *.exe
- -del *.res
- -del *.map
- -del *.rws
- -del sc32.def
- -del sc16.def
+EXTRALIBS=
+TARGET=joytest
+OBJECTS = $(TARGET).obj
+include $(WXDIR)\src\makeprog.sc
-; Last change: JS 8 Apr 102 12:33 pm
-# Symantec C++ makefile
-
+#Digital Mars (was Symantec) C++ makefile
WXDIR = $(WXWIN)
-WXLIB = $(WXDIR)\lib\wx.lib
-INCDIR = $(WXDIR)\include
-INCLUDE=$(INCDIR)
+EXTRALIBS=
TARGET=keyboard
-
-include $(WXDIR)\src\makesc.env
-
-keyboard.exe: keyboard.obj $(DEFFILE) keyboard.res
- *$(CC) $(LDFLAGS) -o$@ $** $(LIBS)
- *$(RC) -k keyboard.res
-
-sc32.def:
- echo EXETYPE NT > sc32.def
- echo SUBSYSTEM WINDOWS >> sc32.def
-
-sc16.def:
- echo NAME $(TARGET) > sc16.def
- echo EXETYPE WINDOWS >> sc16.def
- echo STUB 'WINSTUB.EXE' >> sc16.def
- echo CODE PRELOAD MOVEABLE DISCARDABLE >> sc16.def
- echo DATA PRELOAD MOVEABLE MULTIPLE >> sc16.def
- echo HEAPSIZE 1024 >> sc16.def
- echo STACKSIZE 8192 >> sc16.def
-
-clean:
- -del *.obj
- -del *.exe
- -del *.res
- -del *.map
- -del *.rws
- -del sc32.def
- -del sc16.def
-
+OBJECTS = $(TARGET).obj
+include $(WXDIR)\src\makeprog.sc
--- /dev/null
+#Digital Mars (was Symantec) C++ makefile
+WXDIR = $(WXWIN)
+EXTRALIBS=
+TARGET=listtest
+OBJECTS = $(TARGET).obj
+include $(WXDIR)\src\makeprog.sc
--- /dev/null
+#makefile for Digital Mars / Symantec compilers
+
+WXDIR=..
+
+all:
+ cd access
+ -make -f $(WXDIR)\samples\access\makefile.sc
+ -make -f $(WXDIR)\samples\artprov\makefile.sc
+ -make -f $(WXDIR)\samples\calendar\makefile.sc $@
+ -make -f $(WXDIR)\samples\caret\makefile.sc $@
+ -make -f $(WXDIR)\samples\checklst\makefile.sc $@
+ -make -f $(WXDIR)\samples\config\makefile.sc $@
+ -make -f $(WXDIR)\samples\console\makefile.sc $@
+ -make -f $(WXDIR)\samples\controls\makefile.sc $@
+ -make -f $(WXDIR)\samples\db\makefile.sc $@
+ -make -f $(WXDIR)\samples\dialogs\makefile.sc $@
+ -make -f $(WXDIR)\samples\dialup\makefile.sc $@
+ -make -f $(WXDIR)\samples\display\makefile.sc $@
+ -make -f $(WXDIR)\samples\dnd\makefile.sc $@
+ -make -f $(WXDIR)\samples\docview\makefile.sc $@
+ -make -f $(WXDIR)\samples\docvwmdi\makefile.sc $@
+ -make -f $(WXDIR)\samples\dragimag\makefile.sc $@
+ -make -f $(WXDIR)\samples\drawing\makefile.sc $@
+ -make -f $(WXDIR)\samples\dynamic\makefile.sc $@
+ -make -f $(WXDIR)\samples\erase\makefile.sc $@
+ -make -f $(WXDIR)\samples\event\makefile.sc $@
+ -make -f $(WXDIR)\samples\exec\makefile.sc $@
+ -make -f $(WXDIR)\samples\font\makefile.sc $@
+ -make -f $(WXDIR)\samples\grid\makefile.sc $@
+ -make -f $(WXDIR)\samples\help\makefile.sc $@
+ -make -f $(WXDIR)\samples\htlbox\makefile.sc $@
+ -make -f $(WXDIR)\samples\html\makefile.sc $@
+ -make -f $(WXDIR)\samples\image\makefile.sc $@
+ -make -f $(WXDIR)\samples\internat\makefile.sc $@
+ -make -f $(WXDIR)\samples\ipc\makefile.sc $@
+ -make -f $(WXDIR)\samples\joytest\makefile.sc $@
+ -make -f $(WXDIR)\samples\keyboard\makefile.sc $@
+ -make -f $(WXDIR)\samples\layout\makefile.sc $@
+ -make -f $(WXDIR)\samples\listbox\makefile.sc $@
+ -make -f $(WXDIR)\samples\listctrl\makefile.sc $@
+ -make -f $(WXDIR)\samples\mdi\makefile.sc $@
+ -make -f $(WXDIR)\samples\memcheck\makefile.sc $@
+ -make -f $(WXDIR)\samples\menu\makefile.sc $@
+ -make -f $(WXDIR)\samples\mfc\makefile.sc $@
+ -make -f $(WXDIR)\samples\minifram\makefile.sc $@
+ -make -f $(WXDIR)\samples\minimal\makefile.sc $@
+ -make -f $(WXDIR)\samples\mobile\makefile.sc $@
+ -make -f $(WXDIR)\samples\multimon\makefile.sc $@
+ -make -f $(WXDIR)\samples\nativdlg\makefile.sc $@
+ -make -f $(WXDIR)\samples\newgrid\makefile.sc $@
+ -make -f $(WXDIR)\samples\notebook\makefile.sc $@
+ -make -f $(WXDIR)\samples\oleauto\makefile.sc $@
+ -make -f $(WXDIR)\samples\opengl\makefile.sc $@
+ -make -f $(WXDIR)\samples\ownerdrw\makefile.sc $@
+ -make -f $(WXDIR)\samples\png\makefile.sc $@
+ -make -f $(WXDIR)\samples\printing\makefile.sc $@
+ -make -f $(WXDIR)\samples\propsize\makefile.sc $@
+ -make -f $(WXDIR)\samples\regtest\makefile.sc $@
+ -make -f $(WXDIR)\samples\resource\makefile.sc $@
+ -make -f $(WXDIR)\samples\richedit\makefile.sc $@
+ -make -f $(WXDIR)\samples\rotate\makefile.sc $@
+ -make -f $(WXDIR)\samples\sashtest\makefile.sc $@
+ -make -f $(WXDIR)\samples\scroll\makefile.sc $@
+ -make -f $(WXDIR)\samples\scrollsub\makefile.sc $@
+ -make -f $(WXDIR)\samples\shaped\makefile.sc $@
+ -make -f $(WXDIR)\samples\sockets\makefile.sc $@
+ -make -f $(WXDIR)\samples\splitter\makefile.sc $@
+ -make -f $(WXDIR)\samples\statbar\makefile.sc $@
+ -make -f $(WXDIR)\samples\tab\makefile.sc $@
+ -make -f $(WXDIR)\samples\taskbar\makefile.sc $@
+ -make -f $(WXDIR)\samples\text\makefile.sc $@
+ -make -f $(WXDIR)\samples\thread\makefile.sc $@
+ -make -f $(WXDIR)\samples\toolbar\makefile.sc $@
+ -make -f $(WXDIR)\samples\treectrl\makefile.sc $@
+ -make -f $(WXDIR)\samples\typetest\makefile.sc $@
+ -make -f $(WXDIR)\samples\validate\makefile.sc $@
+ -make -f $(WXDIR)\samples\vscroll\makefile.sc $@
+ -make -f $(WXDIR)\samples\widgets\makefile.sc $@
+ -make -f $(WXDIR)\samples\wizard\makefile.sc $@
+ -make -f $(WXDIR)\samples\wxtest\makefile.sc $@
+ -make -f $(WXDIR)\samples\bytes\makefile.sc $@
+
+
+
--- /dev/null
+#Digital Mars (was Symantec) C++ makefile
+WXDIR = $(WXWIN)
+EXTRALIBS=
+TARGET=memcheck
+OBJECTS = $(TARGET).obj
+include $(WXDIR)\src\makeprog.sc
--- /dev/null
+#Digital Mars (was Symantec) C++ makefile
+WXDIR = $(WXWIN)
+EXTRALIBS=
+TARGET=menu
+OBJECTS = $(TARGET).obj
+include $(WXDIR)\src\makeprog.sc
--- /dev/null
+#Digital Mars (was Symantec) C++ makefile
+WXDIR = $(WXWIN)
+EXTRALIBS=
+TARGET=hello
+$(TARGET).exe: $(OBJECTS) $(TARGET).def $(TARGET).res
+$(TARGET)
+include $(WXDIR)\src\makeprog.sc
-# Purpose: makefile for minifram example (Symantec C++)
-# Created: 2000-03-15
-
-WXDIR = $(WXWIN)
-WXLIB = $(WXDIR)\lib\wx.lib
-INCDIR = $(WXDIR)\include
-INCLUDE=$(INCDIR)
+#Makefile from wxHatch for Symantec/Digital Mars compiler
+WXDIR=..\..\..\wxWindows
TARGET=minifram
-
-include $(WXDIR)\src\makesc.env
-
-minifram.exe: minifram.obj $(DEFFILE) minifram.res
- *$(CC) $(LDFLAGS) -o$@ $** $(LIBS)
- *$(RC) -k minifram.res
-
-sc32.def:
- echo EXETYPE NT > sc32.def
- echo SUBSYSTEM WINDOWS >> sc32.def
-
-sc16.def:
- echo NAME $(TARGET) > sc16.def
- echo EXETYPE WINDOWS >> sc16.def
- echo STUB 'WINSTUB.EXE' >> sc16.def
- echo CODE PRELOAD MOVEABLE DISCARDABLE >> sc16.def
- echo DATA PRELOAD MOVEABLE MULTIPLE >> sc16.def
- echo HEAPSIZE 1024 >> sc16.def
- echo STACKSIZE 8192 >> sc16.def
-
-clean:
- -del *.obj
- -del *.exe
- -del *.res
- -del *.map
- -del *.rws
- -del sc32.def
- -del sc16.def
-
+OBJECTS = $(TARGET).obj
+EXTRALIBS =
+include $(WXDIR)\src\makeprog.sc
--- /dev/null
+#Makefile from wxHatch for Symantec/Digital Mars compiler
+WXDIR=..\..\..\wxWindows
+TARGET=multimon_test
+OBJECTS = $(TARGET).obj
+EXTRALIBS =
+include $(WXDIR)\src\makeprog.sc
-# Symantec C++ makefile for hello example
-# NOTE that peripheral libraries are now dealt in main wxWindows makefile.
-
+#Digital Mars (was Symantec) C++ makefile
WXDIR = $(WXWIN)
-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
-
-.cc.obj:
- *$(CC) -c $(CFLAGS) -I$(INCLUDE) $<
-
-.rc.res:
- *$(RC) -r -I$(INCLUDE) $<
-
-hello.exe: hello.obj hello.def hello.res
- *$(CC) $(LDFLAGS) -o$@ hello.obj hello.def $(LIBS)
- *$(RC) -k hello.res
-
-clean:
- -del *.obj
- -del *.exe
- -del *.res
- -del *.map
- -del *.rws
-
+EXTRALIBS=
+TARGET=nativdlg
+OBJECTS = $(TARGET).obj
+include $(WXDIR)\src\makeprog.sc
--- /dev/null
+#Digital Mars (was Symantec) C++ makefile
+WXDIR = $(WXWIN)
+EXTRALIBS=
+include $(WXDIR)\src\makeprog.sc
-# Purpose: makefile for notebook example (Symantec C++)
-# Created: 2000-03-15
-
-WXDIR = $(WXWIN)
-WXLIB = $(WXDIR)\lib\wx.lib
-INCDIR = $(WXDIR)\include
-INCLUDE=$(INCDIR)
+#Makefile from wxHatch for Symantec/Digital Mars compiler
+WXDIR=..\..\..\wxWindows
TARGET=notebook
-
-include $(WXDIR)\src\makesc.env
-
-notebook.exe: notebook.obj $(DEFFILE) notebook.res
- *$(CC) $(LDFLAGS) -o$@ $** $(LIBS)
- *$(RC) -k notebook.res
-
-sc32.def:
- echo EXETYPE NT > sc32.def
- echo SUBSYSTEM WINDOWS >> sc32.def
-
-sc16.def:
- echo NAME $(TARGET) > sc16.def
- echo EXETYPE WINDOWS >> sc16.def
- echo STUB 'WINSTUB.EXE' >> sc16.def
- echo CODE PRELOAD MOVEABLE DISCARDABLE >> sc16.def
- echo DATA PRELOAD MOVEABLE MULTIPLE >> sc16.def
- echo HEAPSIZE 1024 >> sc16.def
- echo STACKSIZE 8192 >> sc16.def
-
-clean:
- -del *.obj
- -del *.exe
- -del *.res
- -del *.map
- -del *.rws
- -del sc32.def
- -del sc16.def
-
+OBJECTS = $(TARGET).obj
+EXTRALIBS =
+include $(WXDIR)\src\makeprog.sc
--- /dev/null
+#Digital Mars (was Symantec) C++ makefile
+WXDIR = $(WXWIN)
+EXTRALIBS=
+TARGET=oleauto
+OBJECTS = $(TARGET).obj
+include $(WXDIR)\src\makeprog.sc
--- /dev/null
+#Digital Mars (was Symantec) C++ makefile
+WXDIR = $(WXWIN)
+EXTRALIBS=
+include $(WXDIR)\src\makeprog.sc
--- /dev/null
+#Digital Mars (was Symantec) C++ makefile
+WXDIR = $(WXWIN)
+EXTRALIBS=
+TARGET=ownerdrw
+OBJECTS = $(TARGET).obj
+include $(WXDIR)\src\makeprog.sc
--- /dev/null
+#Digital Mars (was Symantec) C++ makefile
+WXDIR = $(WXWIN)
+EXTRALIBS=
+TARGET=printing
+OBJECTS = $(TARGET).obj
+include $(WXDIR)\src\makeprog.sc
-# Purpose: makefile for propsize example (Symantec C++)
-# Created: 2000-03-14
-
-WXDIR = $(WXWIN)
-WXLIB = $(WXDIR)\lib\wx.lib
-INCDIR = $(WXDIR)\include
-INCLUDE=$(INCDIR)
+#Makefile from wxHatch for Symantec/Digital Mars compiler
+WXDIR=..\..\..\wxWindows
TARGET=propsize
-
-include $(WXDIR)\src\makesc.env
-
-propsize.exe: propsize.obj $(DEFFILE) propsize.res
- *$(CC) $(LDFLAGS) -o$@ $** $(LIBS)
- *$(RC) -k propsize.res
-
-sc32.def:
- echo EXETYPE NT > sc32.def
- echo SUBSYSTEM WINDOWS >> sc32.def
-
-sc16.def:
- echo NAME $(TARGET) > sc16.def
- echo EXETYPE WINDOWS >> sc16.def
- echo STUB 'WINSTUB.EXE' >> sc16.def
- echo CODE PRELOAD MOVEABLE DISCARDABLE >> sc16.def
- echo DATA PRELOAD MOVEABLE MULTIPLE >> sc16.def
- echo HEAPSIZE 1024 >> sc16.def
- echo STACKSIZE 8192 >> sc16.def
-
-clean:
- -del *.obj
- -del *.exe
- -del *.res
- -del *.map
- -del *.rws
- -del sc32.def
- -del sc16.def
-
+OBJECTS = $(TARGET).obj
+EXTRALIBS =
+include $(WXDIR)\src\makeprog.sc
--- /dev/null
+#Digital Mars (was Symantec) C++ makefile
+WXDIR = $(WXWIN)
+EXTRALIBS=
+TARGET=regtest
+OBJECTS = $(TARGET).obj
+include $(WXDIR)\src\makeprog.sc
--- /dev/null
+#Digital Mars (was Symantec) C++ makefile
+WXDIR = $(WXWIN)
+EXTRALIBS=
+include $(WXDIR)\src\makeprog.sc
--- /dev/null
+#Digital Mars (was Symantec) C++ makefile
+WXDIR = $(WXWIN)
+EXTRALIBS=
+TARGET=wxlayout
+OBJECTS = wxLayout.obj kbList.obj wxllist.obj wxlparser.obj wxlwindow.obj
+include $(WXDIR)\src\makeprog.sc
--- /dev/null
+#Digital Mars (was Symantec) C++ makefile
+WXDIR = $(WXWIN)
+EXTRALIBS=
+TARGET=rotate
+OBJECTS = $(TARGET).obj
+include $(WXDIR)\src\makeprog.sc
-# Purpose: makefile for sashtest example (Symantec C++)
-# Created: 2000-03-14
-
-WXDIR = $(WXWIN)
-WXLIB = $(WXDIR)\lib\wx.lib
-INCDIR = $(WXDIR)\include
-INCLUDE=$(INCDIR)
+#Makefile from wxHatch for Symantec/Digital Mars compiler
+WXDIR=..\..\..\wxWindows
TARGET=sashtest
-
-include $(WXDIR)\src\makesc.env
-
-sashtest.exe: sashtest.obj $(DEFFILE) sashtest.res
- *$(CC) $(LDFLAGS) -o$@ $** $(LIBS)
- *$(RC) -k sashtest.res
-
-sc32.def:
- echo EXETYPE NT > sc32.def
- echo SUBSYSTEM WINDOWS >> sc32.def
-
-sc16.def:
- echo NAME $(TARGET) > sc16.def
- echo EXETYPE WINDOWS >> sc16.def
- echo STUB 'WINSTUB.EXE' >> sc16.def
- echo CODE PRELOAD MOVEABLE DISCARDABLE >> sc16.def
- echo DATA PRELOAD MOVEABLE MULTIPLE >> sc16.def
- echo HEAPSIZE 1024 >> sc16.def
- echo STACKSIZE 8192 >> sc16.def
-
-clean:
- -del *.obj
- -del *.exe
- -del *.res
- -del *.map
- -del *.rws
- -del sc32.def
- -del sc16.def
-
+OBJECTS = $(TARGET).obj
+EXTRALIBS =
+include $(WXDIR)\src\makeprog.sc
--- /dev/null
+#Digital Mars (was Symantec) C++ makefile
+WXDIR = $(WXWIN)
+EXTRALIBS=
+TARGET=scroll
+OBJECTS = $(TARGET).obj
+include $(WXDIR)\src\makeprog.sc
--- /dev/null
+#Digital Mars (was Symantec) C++ makefile
+WXDIR = $(WXWIN)
+EXTRALIBS=
+TARGET=scrollsub
+OBJECTS = $(TARGET).obj
+include $(WXDIR)\src\makeprog.sc
-# Purpose: makefile for shaped example (Symantec C++)
-# Created: 2000-01-03
-
-WXDIR = $(WXWIN)
-WXLIB = $(WXDIR)\lib\wx.lib
-INCDIR = $(WXDIR)\include
-INCLUDE=$(INCDIR)
+#Makefile from wxHatch for Symantec/Digital Mars compiler
+WXDIR=..\..\..\wxWindows
TARGET=shaped
-
-include $(WXDIR)\src\makesc.env
-
-shaped.exe: shaped.obj $(DEFFILE) shaped.res
- *$(CC) $(LDFLAGS) -o$@ $** $(LIBS)
- *$(RC) -k shaped.res
-
-sc32.def:
- echo EXETYPE NT > sc32.def
- echo SUBSYSTEM WINDOWS >> sc32.def
-
-sc16.def:
- echo NAME $(TARGET) > sc16.def
- echo EXETYPE WINDOWS >> sc16.def
- echo STUB 'WINSTUB.EXE' >> sc16.def
- echo CODE PRELOAD MOVEABLE DISCARDABLE >> sc16.def
- echo DATA PRELOAD MOVEABLE MULTIPLE >> sc16.def
- echo HEAPSIZE 1024 >> sc16.def
- echo STACKSIZE 8192 >> sc16.def
-
-clean:
- -del *.obj
- -del *.exe
- -del *.res
- -del *.map
- -del *.rws
- -del sc32.def
- -del sc16.def
-
+OBJECTS = $(TARGET).obj
+EXTRALIBS =
+include $(WXDIR)\src\makeprog.sc
--- /dev/null
+#Digital Mars (was Symantec) C++ makefile
+WXDIR = $(WXWIN)
+EXTRALIBS=
+include $(WXDIR)\src\makeprog.sc
-# Purpose: makefile for splitter example (Symantec C++)
-# Created: 2000-03-15
-
-WXDIR = $(WXWIN)
-WXLIB = $(WXDIR)\lib\wx.lib
-INCDIR = $(WXDIR)\include
-INCLUDE=$(INCDIR)
+#Makefile from wxHatch for Symantec/Digital Mars compiler
+WXDIR=..\..\..\wxWindows
TARGET=splitter
-
-include $(WXDIR)\src\makesc.env
-
-splitter.exe: splitter.obj $(DEFFILE) splitter.res
- *$(CC) $(LDFLAGS) -o$@ $** $(LIBS)
- *$(RC) -k splitter.res
-
-sc32.def:
- echo EXETYPE NT > sc32.def
- echo SUBSYSTEM WINDOWS >> sc32.def
-
-sc16.def:
- echo NAME $(TARGET) > sc16.def
- echo EXETYPE WINDOWS >> sc16.def
- echo STUB 'WINSTUB.EXE' >> sc16.def
- echo CODE PRELOAD MOVEABLE DISCARDABLE >> sc16.def
- echo DATA PRELOAD MOVEABLE MULTIPLE >> sc16.def
- echo HEAPSIZE 1024 >> sc16.def
- echo STACKSIZE 8192 >> sc16.def
-
-clean:
- -del *.obj
- -del *.exe
- -del *.res
- -del *.map
- -del *.rws
- -del sc32.def
- -del sc16.def
-
+OBJECTS = $(TARGET).obj
+EXTRALIBS =
+include $(WXDIR)\src\makeprog.sc
-# Purpose: makefile for statbar example (Symantec C++)
-# Created: 2000-02-04
-
-WXDIR = $(WXWIN)
-WXLIB = $(WXDIR)\lib\wx.lib
-INCDIR = $(WXDIR)\include
-INCLUDE=$(INCDIR)
+#Makefile from wxHatch for Symantec/Digital Mars compiler
+WXDIR=..\..\..\wxWindows
TARGET=statbar
-
-include $(WXDIR)\src\makesc.env
-
-statbar.exe: statbar.obj $(DEFFILE) statbar.res
- *$(CC) $(LDFLAGS) -o$@ $** $(LIBS)
- *$(RC) -k statbar.res
-
-sc32.def:
- echo EXETYPE NT > sc32.def
- echo SUBSYSTEM WINDOWS >> sc32.def
-
-sc16.def:
- echo NAME $(TARGET) > sc16.def
- echo EXETYPE WINDOWS >> sc16.def
- echo STUB 'WINSTUB.EXE' >> sc16.def
- echo CODE PRELOAD MOVEABLE DISCARDABLE >> sc16.def
- echo DATA PRELOAD MOVEABLE MULTIPLE >> sc16.def
- echo HEAPSIZE 1024 >> sc16.def
- echo STACKSIZE 8192 >> sc16.def
-
-clean:
- -del *.obj
- -del *.exe
- -del *.res
- -del *.map
- -del *.rws
- -del sc32.def
- -del sc16.def
-
+OBJECTS = $(TARGET).obj
+EXTRALIBS =
+include $(WXDIR)\src\makeprog.sc
--- /dev/null
+#Digital Mars (was Symantec) C++ makefile
+WXDIR = $(WXWIN)
+EXTRALIBS=
+TARGET=tbtest
+OBJECTS = $(TARGET).obj
+include $(WXDIR)\src\makeprog.sc
--- /dev/null
+#Makefile from wxHatch for Symantec/Digital Mars compiler
+WXDIR=..\..\..\wxWindows
+TARGET=text
+OBJECTS = $(TARGET).obj
+EXTRALIBS =
+include $(WXDIR)\src\makeprog.sc
-# Purpose: makefile for toolbar example (Symantec C++)
-# Created: 2000-03-14
-
-WXDIR = $(WXWIN)
-WXLIB = $(WXDIR)\lib\wx.lib
-INCDIR = $(WXDIR)\include
-INCLUDE=$(INCDIR)
+#Makefile from wxHatch for Symantec/Digital Mars compiler
+WXDIR=..\..\..\wxWindows
TARGET=toolbar
-
-include $(WXDIR)\src\makesc.env
-
-toolbar.exe: toolbar.obj $(DEFFILE) toolbar.res
- *$(CC) $(LDFLAGS) -o$@ $** $(LIBS)
- *$(RC) -k toolbar.res
-
-sc32.def:
- echo EXETYPE NT > sc32.def
- echo SUBSYSTEM WINDOWS >> sc32.def
-
-sc16.def:
- echo NAME $(TARGET) > sc16.def
- echo EXETYPE WINDOWS >> sc16.def
- echo STUB 'WINSTUB.EXE' >> sc16.def
- echo CODE PRELOAD MOVEABLE DISCARDABLE >> sc16.def
- echo DATA PRELOAD MOVEABLE MULTIPLE >> sc16.def
- echo HEAPSIZE 1024 >> sc16.def
- echo STACKSIZE 8192 >> sc16.def
-
-clean:
- -del *.obj
- -del *.exe
- -del *.res
- -del *.map
- -del *.rws
- -del sc32.def
- -del sc16.def
-
+OBJECTS = $(TARGET).obj
+EXTRALIBS =
+include $(WXDIR)\src\makeprog.sc
-# Purpose: makefile for treetest example (Symantec C++)
-# Created: 2000-03-15
-
-WXDIR = $(WXWIN)
-WXLIB = $(WXDIR)\lib\wx.lib
-INCDIR = $(WXDIR)\include
-INCLUDE=$(INCDIR)
+#Makefile from wxHatch for Symantec/Digital Mars compiler
+WXDIR=..\..\..\wxWindows
TARGET=treetest
-
-include $(WXDIR)\src\makesc.env
-
-treetest.exe: treetest.obj $(DEFFILE) treetest.res
- *$(CC) $(LDFLAGS) -o$@ $** $(LIBS)
- *$(RC) -k treetest.res
-
-sc32.def:
- echo EXETYPE NT > sc32.def
- echo SUBSYSTEM WINDOWS >> sc32.def
-
-sc16.def:
- echo NAME $(TARGET) > sc16.def
- echo EXETYPE WINDOWS >> sc16.def
- echo STUB 'WINSTUB.EXE' >> sc16.def
- echo CODE PRELOAD MOVEABLE DISCARDABLE >> sc16.def
- echo DATA PRELOAD MOVEABLE MULTIPLE >> sc16.def
- echo HEAPSIZE 1024 >> sc16.def
- echo STACKSIZE 8192 >> sc16.def
-
-clean:
- -del *.obj
- -del *.exe
- -del *.res
- -del *.map
- -del *.rws
- -del sc32.def
- -del sc16.def
-
+OBJECTS = $(TARGET).obj
+EXTRALIBS =
+include $(WXDIR)\src\makeprog.sc
-# Purpose: makefile for typetest example (Symantec C++)
-# Created: 2000-03-14
-
-WXDIR = $(WXWIN)
-WXLIB = $(WXDIR)\lib\wx.lib
-INCDIR = $(WXDIR)\include
-INCLUDE=$(INCDIR)
+#Makefile from wxHatch for Symantec/Digital Mars compiler
+WXDIR=..\..\..\wxWindows
TARGET=typetest
-
-include $(WXDIR)\src\makesc.env
-
-typetest.exe: typetest.obj $(DEFFILE) typetest.res
- *$(CC) $(LDFLAGS) -o$@ $** $(LIBS)
- *$(RC) -k typetest.res
-
-sc32.def:
- echo EXETYPE NT > sc32.def
- echo SUBSYSTEM WINDOWS >> sc32.def
-
-sc16.def:
- echo NAME $(TARGET) > sc16.def
- echo EXETYPE WINDOWS >> sc16.def
- echo STUB 'WINSTUB.EXE' >> sc16.def
- echo CODE PRELOAD MOVEABLE DISCARDABLE >> sc16.def
- echo DATA PRELOAD MOVEABLE MULTIPLE >> sc16.def
- echo HEAPSIZE 1024 >> sc16.def
- echo STACKSIZE 8192 >> sc16.def
-
-clean:
- -del *.obj
- -del *.exe
- -del *.res
- -del *.map
- -del *.rws
- -del sc32.def
- -del sc16.def
-
+OBJECTS = $(TARGET).obj
+EXTRALIBS =
+include $(WXDIR)\src\makeprog.sc
-# Purpose: makefile for validate example (Symantec C++)
-# Created: 2000-03-14
-
-WXDIR = $(WXWIN)
-WXLIB = $(WXDIR)\lib\wx.lib
-INCDIR = $(WXDIR)\include
-INCLUDE=$(INCDIR)
+#Makefile from wxHatch for Symantec/Digital Mars compiler
+WXDIR=..\..\..\wxWindows
TARGET=validate
-
-include $(WXDIR)\src\makesc.env
-
-validate.exe: validate.obj $(DEFFILE) validate.res
- *$(CC) $(LDFLAGS) -o$@ $** $(LIBS)
- *$(RC) -k validate.res
-
-sc32.def:
- echo EXETYPE NT > sc32.def
- echo SUBSYSTEM WINDOWS >> sc32.def
-
-sc16.def:
- echo NAME $(TARGET) > sc16.def
- echo EXETYPE WINDOWS >> sc16.def
- echo STUB 'WINSTUB.EXE' >> sc16.def
- echo CODE PRELOAD MOVEABLE DISCARDABLE >> sc16.def
- echo DATA PRELOAD MOVEABLE MULTIPLE >> sc16.def
- echo HEAPSIZE 1024 >> sc16.def
- echo STACKSIZE 8192 >> sc16.def
-
-clean:
- -del *.obj
- -del *.exe
- -del *.res
- -del *.map
- -del *.rws
- -del sc32.def
- -del sc16.def
-
+OBJECTS = $(TARGET).obj
+EXTRALIBS =
+include $(WXDIR)\src\makeprog.sc
--- /dev/null
+#Makefile from wxHatch for Symantec/Digital Mars compiler
+WXDIR=..\..\..\wxWindows
+TARGET=vstest
+OBJECTS = $(TARGET).obj
+EXTRALIBS =
+include $(WXDIR)\src\makeprog.sc
--- /dev/null
+#Makefile from wxHatch for Symantec/Digital Mars compiler
+WXDIR=..\..\..\wxWindows
+TARGET=widgets
+OBJECTS = $(TARGET).obj
+EXTRALIBS =
+include $(WXDIR)\src\makeprog.sc
-# Purpose: makefile for wizard example (Symantec C++)
-# Created: 2000-03-15
-
-WXDIR = $(WXWIN)
-WXLIB = $(WXDIR)\lib\wx.lib
-INCDIR = $(WXDIR)\include
-INCLUDE=$(INCDIR)
+#Makefile from wxHatch for Symantec/Digital Mars compiler
+WXDIR=..\..\..\wxWindows
TARGET=wizard
-
-include $(WXDIR)\src\makesc.env
-
-wizard.exe: wizard.obj $(DEFFILE) wizard.res
- *$(CC) $(LDFLAGS) -o$@ $** $(LIBS)
- *$(RC) -k wizard.res
-
-sc32.def:
- echo EXETYPE NT > sc32.def
- echo SUBSYSTEM WINDOWS >> sc32.def
-
-sc16.def:
- echo NAME $(TARGET) > sc16.def
- echo EXETYPE WINDOWS >> sc16.def
- echo STUB 'WINSTUB.EXE' >> sc16.def
- echo CODE PRELOAD MOVEABLE DISCARDABLE >> sc16.def
- echo DATA PRELOAD MOVEABLE MULTIPLE >> sc16.def
- echo HEAPSIZE 1024 >> sc16.def
- echo STACKSIZE 8192 >> sc16.def
-
-clean:
- -del *.obj
- -del *.exe
- -del *.res
- -del *.map
- -del *.rws
- -del sc32.def
- -del sc16.def
-
+OBJECTS = $(TARGET).obj
+EXTRALIBS =
+include $(WXDIR)\src\makeprog.sc
--- /dev/null
+#Makefile from wxHatch for Symantec/Digital Mars compiler
+WXDIR=..\..\..\wxWindows
+TARGET=test
+OBJECTS = $(TARGET).obj
+EXTRALIBS =
+include $(WXDIR)\src\makeprog.sc