From ddbde726d7d44360eb253f2fe95d83343418c5e3 Mon Sep 17 00:00:00 2001 From: "J. Russell Smyth" Date: Tue, 13 Jul 1999 21:58:34 +0000 Subject: [PATCH] Added makefiles for VC++ for wxHTML samples git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2996 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- samples/html/Makefile.vc | 55 +++++++++++++++++++++++++++++++ samples/html/about/Makefile.vc | 18 ++++++++++ samples/html/help/Makefile.vc | 18 ++++++++++ samples/html/printing/Makefile.vc | 18 ++++++++++ samples/html/test/Makefile.vc | 18 ++++++++++ samples/html/virtual/Makefile.vc | 18 ++++++++++ samples/html/widget/Makefile.vc | 18 ++++++++++ samples/html/zip/Makefile.vc | 18 ++++++++++ 8 files changed, 181 insertions(+) create mode 100644 samples/html/Makefile.vc create mode 100644 samples/html/about/Makefile.vc create mode 100644 samples/html/help/Makefile.vc create mode 100644 samples/html/printing/Makefile.vc create mode 100644 samples/html/test/Makefile.vc create mode 100644 samples/html/virtual/Makefile.vc create mode 100644 samples/html/widget/Makefile.vc create mode 100644 samples/html/zip/Makefile.vc diff --git a/samples/html/Makefile.vc b/samples/html/Makefile.vc new file mode 100644 index 0000000000..2643a2e0d1 --- /dev/null +++ b/samples/html/Makefile.vc @@ -0,0 +1,55 @@ +# +# File: makefile.vc +# Author: Julian Smart +# Created: 1993 +# Updated: +# Copyright: (c) 1993, AIAI, University of Edinburgh +# +# "%W% %G%" +# +# Makefile : Builds samples for Win95, MSVC++ 4.0 +# Use FINAL=1 argument to nmake to build final version with no debugging +# info + +# Set WXDIR for your system +WXDIR = $(WXWIN) + +THISDIR=$(WXDIR)\samples + +!include $(WXDIR)\src\makevc.env + +DEBUG_FLAGS="/Zi /FR" +LINK_DEBUG_FLAGS="/RELEASE" + +all: + cd $(WXDIR)\samples\html\about + nmake -f makefile.vc FINAL=$(FINAL) + cd $(WXDIR)\samples\html\help + nmake -f makefile.vc FINAL=$(FINAL) + cd $(WXDIR)\samples\html\printing + nmake -f makefile.vc FINAL=$(FINAL) + cd $(WXDIR)\samples\html\test + nmake -f makefile.vc FINAL=$(FINAL) + cd $(WXDIR)\samples\html\virtual + nmake -f makefile.vc FINAL=$(FINAL) + cd $(WXDIR)\samples\html\widget + nmake -f makefile.vc FINAL=$(FINAL) + cd $(WXDIR)\samples\html\zip + nmake -f makefile.vc FINAL=$(FINAL) + +clean: + cd $(WXDIR)\samples\html\about + nmake -f makefile.vc clean + cd $(WXDIR)\samples\html\help + nmake -f makefile.vc clean + cd $(WXDIR)\samples\html\printing + nmake -f makefile.vc clean + cd $(WXDIR)\samples\html\test + nmake -f makefile.vc clean + cd $(WXDIR)\samples\html\virtual + nmake -f makefile.vc clean + cd $(WXDIR)\samples\html\widget + nmake -f makefile.vc clean + cd $(WXDIR)\samples\html\zip + nmake -f makefile.vc clean + diff --git a/samples/html/about/Makefile.vc b/samples/html/about/Makefile.vc new file mode 100644 index 0000000000..0a6949adc0 --- /dev/null +++ b/samples/html/about/Makefile.vc @@ -0,0 +1,18 @@ +# +# File: makefile.vc +# Author: Julian Smart +# Created: 1999 +# Updated: +# Copyright: (c) Julian Smart +# +# Makefile : Builds sample (VC++, WIN32) +# Use FINAL=1 argument to nmake to build final version with no debug info. + +# Set WXDIR for your system +WXDIR = $(WXWIN) + +PROGRAM=about +OBJECTS = $(PROGRAM).obj + +!include $(WXDIR)\src\makeprog.vc + diff --git a/samples/html/help/Makefile.vc b/samples/html/help/Makefile.vc new file mode 100644 index 0000000000..e8c052e81a --- /dev/null +++ b/samples/html/help/Makefile.vc @@ -0,0 +1,18 @@ +# +# File: makefile.vc +# Author: Julian Smart +# Created: 1999 +# Updated: +# Copyright: (c) Julian Smart +# +# Makefile : Builds sample (VC++, WIN32) +# Use FINAL=1 argument to nmake to build final version with no debug info. + +# Set WXDIR for your system +WXDIR = $(WXWIN) + +PROGRAM=help +OBJECTS = $(PROGRAM).obj + +!include $(WXDIR)\src\makeprog.vc + diff --git a/samples/html/printing/Makefile.vc b/samples/html/printing/Makefile.vc new file mode 100644 index 0000000000..d3430e9401 --- /dev/null +++ b/samples/html/printing/Makefile.vc @@ -0,0 +1,18 @@ +# +# File: makefile.vc +# Author: Julian Smart +# Created: 1999 +# Updated: +# Copyright: (c) Julian Smart +# +# Makefile : Builds sample (VC++, WIN32) +# Use FINAL=1 argument to nmake to build final version with no debug info. + +# Set WXDIR for your system +WXDIR = $(WXWIN) + +PROGRAM=printing +OBJECTS = $(PROGRAM).obj + +!include $(WXDIR)\src\makeprog.vc + diff --git a/samples/html/test/Makefile.vc b/samples/html/test/Makefile.vc new file mode 100644 index 0000000000..4ada748eda --- /dev/null +++ b/samples/html/test/Makefile.vc @@ -0,0 +1,18 @@ +# +# File: makefile.vc +# Author: Julian Smart +# Created: 1999 +# Updated: +# Copyright: (c) Julian Smart +# +# Makefile : Builds sample (VC++, WIN32) +# Use FINAL=1 argument to nmake to build final version with no debug info. + +# Set WXDIR for your system +WXDIR = $(WXWIN) + +PROGRAM=test +OBJECTS = $(PROGRAM).obj + +!include $(WXDIR)\src\makeprog.vc + diff --git a/samples/html/virtual/Makefile.vc b/samples/html/virtual/Makefile.vc new file mode 100644 index 0000000000..9265a1fb3f --- /dev/null +++ b/samples/html/virtual/Makefile.vc @@ -0,0 +1,18 @@ +# +# File: makefile.vc +# Author: Julian Smart +# Created: 1999 +# Updated: +# Copyright: (c) Julian Smart +# +# Makefile : Builds sample (VC++, WIN32) +# Use FINAL=1 argument to nmake to build final version with no debug info. + +# Set WXDIR for your system +WXDIR = $(WXWIN) + +PROGRAM=virtual +OBJECTS = $(PROGRAM).obj + +!include $(WXDIR)\src\makeprog.vc + diff --git a/samples/html/widget/Makefile.vc b/samples/html/widget/Makefile.vc new file mode 100644 index 0000000000..5df3ebf04c --- /dev/null +++ b/samples/html/widget/Makefile.vc @@ -0,0 +1,18 @@ +# +# File: makefile.vc +# Author: Julian Smart +# Created: 1999 +# Updated: +# Copyright: (c) Julian Smart +# +# Makefile : Builds sample (VC++, WIN32) +# Use FINAL=1 argument to nmake to build final version with no debug info. + +# Set WXDIR for your system +WXDIR = $(WXWIN) + +PROGRAM=widget +OBJECTS = $(PROGRAM).obj + +!include $(WXDIR)\src\makeprog.vc + diff --git a/samples/html/zip/Makefile.vc b/samples/html/zip/Makefile.vc new file mode 100644 index 0000000000..f9db096361 --- /dev/null +++ b/samples/html/zip/Makefile.vc @@ -0,0 +1,18 @@ +# +# File: makefile.vc +# Author: Julian Smart +# Created: 1999 +# Updated: +# Copyright: (c) Julian Smart +# +# Makefile : Builds sample (VC++, WIN32) +# Use FINAL=1 argument to nmake to build final version with no debug info. + +# Set WXDIR for your system +WXDIR = $(WXWIN) + +PROGRAM=zip +OBJECTS = $(PROGRAM).obj + +!include $(WXDIR)\src\makeprog.vc + -- 2.45.2