From a5dec9e54d060377eb6009baa3db86aafa6a018a Mon Sep 17 00:00:00 2001 From: Harco de Hilster Date: Sun, 28 Feb 1999 21:56:55 +0000 Subject: [PATCH] Modified makefile.unx to include bitmaps dir. Added missing folder.xpm to bitmaps git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1832 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- utils/ogl/samples/studio/bitmaps/folder.xpm | 29 +++++++++++++++++++++ utils/ogl/samples/studio/makefile.unx | 4 +-- 2 files changed, 31 insertions(+), 2 deletions(-) create mode 100644 utils/ogl/samples/studio/bitmaps/folder.xpm diff --git a/utils/ogl/samples/studio/bitmaps/folder.xpm b/utils/ogl/samples/studio/bitmaps/folder.xpm new file mode 100644 index 0000000000..fdabbfbe06 --- /dev/null +++ b/utils/ogl/samples/studio/bitmaps/folder.xpm @@ -0,0 +1,29 @@ +/* XPM */ +static char * folder_xpm[] = { +/* width height ncolors chars_per_pixel */ +"16 16 6 1", +/* colors */ +" s None c None", +". c #000000", +"+ c #c0c0c0", +"@ c #808080", +"# c #ffff00", +"$ c #ffffff", +/* pixels */ +" ", +" @@@@@ ", +" @#+#+#@ ", +" @#+#+#+#@@@@@@ ", +" @$$$$$$$$$$$$@.", +" @$#+#+#+#+#+#@.", +" @$+#+#+#+#+#+@.", +" @$#+#+#+#+#+#@.", +" @$+#+#+#+#+#+@.", +" @$#+#+#+#+#+#@.", +" @$+#+#+#+#+#+@.", +" @$#+#+#+#+#+#@.", +" @@@@@@@@@@@@@@.", +" ..............", +" ", +" "}; + diff --git a/utils/ogl/samples/studio/makefile.unx b/utils/ogl/samples/studio/makefile.unx index d1cca94307..5fca57a097 100644 --- a/utils/ogl/samples/studio/makefile.unx +++ b/utils/ogl/samples/studio/makefile.unx @@ -14,10 +14,10 @@ PROGRAM=studio OBJECTS=$(PROGRAM).o doc.o shapes.o symbols.o view.o cspalette.o\ mainfrm.o project.o dialogs.o csprint.o -EXTRACPPFLAGS=-I$(WXDIR)/utils/ogl/src +EXTRACPPFLAGS=-I$(WXDIR)/utils/ogl/src -I./bitmaps EXTRALDLIBS=-logl$(GUISUFFIX) -WXDIR=/home/jacs/wx2 +#WXDIR=/home/jacs/wx2 include $(WXDIR)/src/makeprog.env