wxWidgets/utils/ogl/samples/studio/Makefile.in
Harco de Hilster af6c301b95 added Makefile[.in] for build using wxGTK method. Note that wxGTK's createall
script doesn't yet look this deep, so it's not very usefull now...

also fixed some wxGTK compile problems.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1835 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
1999-03-01 01:26:11 +00:00

36 lines
621 B
Makefile

# WXXT base directory
WXBASEDIR=@WXBASEDIR@
# set the OS type for compilation
OS=@OS@
# compile a binary only
RULE=bin
# define exexutable name
BIN_TARGET=studio
# define binary sources
BIN_CPP_SRC=\
cspalette.cpp\
csprint.cpp\
dialogs.cpp\
doc.cpp\
mainfrm.cpp\
project.cpp\
shapes.cpp\
studio.cpp\
symbols.cpp\
view.cpp
#define binary objects
BIN_OBJ=\
$(BIN_CPP_SRC:.cpp=.o)
# additional things needed to link
BIN_LINK=-lwx_ogl_gtk
# additional things needed to compile
ADD_COMPILE=-I$(WXBASEDIR)/utils/ogl/src -I../bitmaps
# include the definitions now
include ../../../../../template.mak