minor Configure / makefiles updates
Removed mor (egcs) warnings Updated version to 2.0.1 in version.h Several corrections for strict compilers OpenGL updates new wxApp::InitVisual() for overriding in order to set non-default visual (unportable, of course) Added makefiles for DialogEd and Tex2Rtf made wxGTK compile with Tex2Rtf Added BEGIN_DRAG event to tree ctrl Added missing #include to lexel.l (unistd.h) (MSW?) new wxGTK.spec turned one or two more #ifdef into #if git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1349 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
Linux
|
||||
linux-gnu
|
||||
linux
|
||||
Test.h
|
||||
Test.wxr
|
||||
dialog.h
|
||||
dialog.wxr
|
@@ -1 +1,38 @@
|
||||
include ../../../setup/general/makedirs
|
||||
|
||||
CC = g++
|
||||
|
||||
DialogEd: dialoged.o dlghndlr.o edlist.o edtree.o reseditr.o reswrite.o \
|
||||
symbtabl.o winprop.o winstyle.o
|
||||
$(CC) -o DialogEd \
|
||||
dialoged.o dlghndlr.o edlist.o edtree.o reseditr.o reswrite.o \
|
||||
symbtabl.o winprop.o winstyle.o `wx-config --libs`
|
||||
|
||||
dialoged.o: dialoged.cpp
|
||||
$(CC) `wx-config --cflags` -c dialoged.cpp
|
||||
|
||||
dlghndlr.o: dlghndlr.cpp
|
||||
$(CC) `wx-config --cflags` -c dlghndlr.cpp
|
||||
|
||||
edlist.o: edlist.cpp
|
||||
$(CC) `wx-config --cflags` -c edlist.cpp
|
||||
|
||||
edtree.o: edtree.cpp
|
||||
$(CC) `wx-config --cflags` -c edtree.cpp
|
||||
|
||||
reseditr.o: reseditr.cpp
|
||||
$(CC) `wx-config --cflags` -c reseditr.cpp
|
||||
|
||||
reswrite.o: reswrite.cpp
|
||||
$(CC) `wx-config --cflags` -c reswrite.cpp
|
||||
|
||||
symbtabl.o: symbtabl.cpp
|
||||
$(CC) `wx-config --cflags` -c symbtabl.cpp
|
||||
|
||||
winprop.o: winprop.cpp
|
||||
$(CC) `wx-config --cflags` -c winprop.cpp
|
||||
|
||||
winstyle.o: winstyle.cpp
|
||||
$(CC) `wx-config --cflags` -c winstyle.cpp
|
||||
|
||||
clean:
|
||||
rm -f *.o DialogEd
|
||||
|
@@ -1,26 +0,0 @@
|
||||
# WXXT base directory
|
||||
WXBASEDIR=@WXBASEDIR@
|
||||
|
||||
# set the OS type for compilation
|
||||
OS=@OS@
|
||||
# compile a library only
|
||||
RULE=bin
|
||||
|
||||
# define library name
|
||||
BIN_TARGET=dialoged
|
||||
# define library sources
|
||||
BIN_SRC=dialoged.cpp dlghndlr.cpp edlist.cpp edtree.cpp \
|
||||
reseditr.cpp reswrite.cpp symbtabl.cpp winprop.cpp winstyle.cpp
|
||||
|
||||
#define library objects
|
||||
BIN_OBJ=dialoged.o dlghndlr.o edlist.o edtree.o \
|
||||
reseditr.o reswrite.o symbtabl.o winprop.o winstyle.o
|
||||
|
||||
# additional things needed to link
|
||||
BIN_LINK=
|
||||
|
||||
# additional things needed to compile
|
||||
ADD_COMPILE=
|
||||
|
||||
# include the definitions now
|
||||
include ../../../../template.mak
|
Reference in New Issue
Block a user