From: David Webster Date: Tue, 29 May 2001 03:49:36 +0000 (+0000) Subject: Menu files for OS/2 builds X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/ea7d85eb8508063f8b763f0c5c670ad4dc698005 Menu files for OS/2 builds git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10371 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/samples/menu/MENU.RCO b/samples/menu/MENU.RCO new file mode 100644 index 0000000000..1554583b3d --- /dev/null +++ b/samples/menu/MENU.RCO @@ -0,0 +1,3 @@ +ICON 1 PRELOAD "mondros2.ico" +#include "..\\..\\include\wx\os2\wx.rc" + diff --git a/samples/menu/makefile.va b/samples/menu/makefile.va new file mode 100644 index 0000000000..3081148205 --- /dev/null +++ b/samples/menu/makefile.va @@ -0,0 +1,44 @@ +# +# File: makefile.va +# Author: David Webster +# Created: 1999 +# Updated: +# Copyright: (c) David Webster +# +# Makefile : Builds sample (VisualAgeC++ V3.0, OS/2 PM) +# Use FINAL=1 argument to nmake to build final version with no debug info. + +# Set WXDIR for your system +WXDIR=$(WXWIN) + +!include $(WXDIR)\src\makeva.env + +# +# Define which program this is and what it's path is and where to output to +# +PROGRAM=menu +THISDIR=$(WXWIN)\samples\$(PROGRAM) +OPATH=$(THISDIR)\$D + +# +# Make sure output directory is available +# +!if [md $(OPATH)] +!endif + +# +# Standard definitions +# +PROGRC=$(THISDIR)\$(PROGRAM).rcO +OBJECTS=$(OPATH)\$(PROGRAM).obj +PROGRES=$(OPATH)\$(PROGRAM).res +PROGTARGET=$(OPATH)\$(PROGRAM).exe + +.cpp{$OPATH}.obj: + @echo $< + icc @<< +$(CPPFLAGS) /Fo$@ /Tp $< +<< + +!include $(WXDIR)\src\makeprog.va + diff --git a/samples/menu/mondros2.ico b/samples/menu/mondros2.ico new file mode 100644 index 0000000000..8b0e58c0d7 Binary files /dev/null and b/samples/menu/mondros2.ico differ