af11388a62
2 - removed pf_sample from library - this was test code 3 - modified newbmpbutton to create all button images once at initial creation 4 - newbmpbutton only refreses when necessary 5 - non-msw platforms may now disable (enable(FALSE)) a button - this will half-grey the image and draw text in disabled color. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1941 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
30 lines
520 B
Makefile
30 lines
520 B
Makefile
# WXXT base directory
|
|
WXBASEDIR=@WXBASEDIR@
|
|
|
|
# set the OS type for compilation
|
|
OS=@OS@
|
|
# compile a binary only
|
|
RULE=bin
|
|
|
|
# define executable name
|
|
BIN_TARGET=fl_demo
|
|
|
|
# define library sources
|
|
BIN_CPP_SRC= \
|
|
fl_demo.cpp \
|
|
settingsdlg.cpp \
|
|
wxinfo.cpp
|
|
|
|
#define library objects
|
|
BIN_OBJ=\
|
|
$(BIN_CPP_SRC:.cpp=.o)
|
|
|
|
# additional things needed to link
|
|
BIN_LINK=-lwx_fl_gtk
|
|
|
|
# additional things needed to compile
|
|
ADD_COMPILE=-I../../../src -I../../bitmaps
|
|
|
|
# include the definitions now
|
|
include ../../../../../template.mak
|