wxWidgets/utils/framelayout/samples/test/Makefile.in
Harco de Hilster bd9396d52d Added Aleksandras' framelayout code, with more or less working Linux Makefiles
General makefiles to be added later.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1876 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
1999-03-07 23:34:37 +00:00

28 lines
469 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_test
# define library sources
BIN_CPP_SRC=\
fl_test.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
# include the definitions now
include ../../../../../template.mak