]> git.saurik.com Git - wxWidgets.git/blame - utils/framelayout/samples/demo/Makefile.in
Made frame layout stuff use system settings for colors, fonts
[wxWidgets.git] / utils / framelayout / samples / demo / Makefile.in
CommitLineData
bd9396d5
HH
1# WXXT base directory
2WXBASEDIR=@WXBASEDIR@
3
4# set the OS type for compilation
5OS=@OS@
6# compile a binary only
7RULE=bin
8
9# define executable name
10BIN_TARGET=fl_demo
11
12# define library sources
13BIN_CPP_SRC=\
14 fl_demo.cpp\
15
16#define library objects
17BIN_OBJ=\
18 $(BIN_CPP_SRC:.cpp=.o)
19
20# additional things needed to link
21BIN_LINK=-lwx_fl_gtk
22
23# additional things needed to compile
08973ff0 24ADD_COMPILE=-I../../../src -I../../bitmaps
bd9396d5
HH
25
26# include the definitions now
27include ../../../../../template.mak