Augmented beta to 9,

Removed a few old Makefiles,
  Added one missing one (blush),
  Added first sample makefiles,


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3362 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
1999-08-12 19:24:39 +00:00
parent 517a619dc3
commit ad9edf45f1
46 changed files with 1203 additions and 1511 deletions

View File

@@ -1 +0,0 @@
Makefile.in

View File

@@ -1,24 +0,0 @@
# The makefile for wxWindows samples: only one sample is always built, the
# minimal one, the other samples to build are determined at configure time
# because many of them require the library to have some features compiled into
# it)
#
# $Id$
SUBDIRS = minimal \
@SAMPLES_SUBDIRS@
# do nothing during "make [un]install" in the samples subdirectory (can't
# override install because install-recursive is its dependency which is still
# built)
#
# this results in warnings from make about "overriding commands for garget
# install-recursive", but it's more than compensated by the time we gain by not
# entering/leaving all samples directories (but if somebody has a better
# solution it would be welcome!)
install-recursive:
@true
uninstall-recursive:
@true

72
samples/Makefile.in Normal file
View File

@@ -0,0 +1,72 @@
#
# Makefile : Builds wxWindows samples for Unix.
#
all:
cp -u -r @top_srcdir@/samples ..
cd bombs; make
cd checklst; make
cd config; make
cd controls; make
cd dialogs; make
cd docview; make
cd docvwmdi; make
cd dynamic; make
cd fractal; make
cd grid; make
cd help; make
cd image; make
cd internat; make
cd layout; make
cd listctrl; make
cd memcheck; make
cd minifram; make
cd minimal; make
cd notebook; make
cd printing; make
cd proplist; make
cd resource; make
cd sashtest; make
cd splitter; make
cd text; make
cd toolbar; make
cd typetest; make
cd validate; make
cd treectrl; make
cd wxpoem; make
cd dnd; make
cd thread; make
clean:
cd bombs; make clean
cd checklst; make clean
cd config; make clean
cd controls; make clean
cd dialogs; make clean
cd docview; make clean
cd docvwmdi; make clean
cd dynamic; make clean
cd fractal; make clean
cd grid; make clean
cd help; make clean
cd image; make clean
cd internat; make clean
cd layout; make clean
cd listctrl; make clean
cd memcheck; make clean
cd minifram; make clean
cd minimal; make clean
cd notebook; make clean
cd printing; make clean
cd proplist; make clean
cd resource; make clean
cd sashtest; make clean
cd splitter; make clean
cd toolbar; make clean
cd typetest; make clean
cd validate; make clean
cd treectrl; make clean
cd wxpoem; make clean
cd dnd; make clean
cd thread; make clean

View File

@@ -1,2 +0,0 @@
Makefile.in

View File

@@ -1,9 +0,0 @@
AUTOMAKE_OPTIONS = 1.3 no-dependencies
SUFFIXES = .cpp
DEFS = @DEFS@ $(TOOLKIT_DEF) $(WXDEBUG_DEFINE)
noinst_PROGRAMS = bombs
bombs_SOURCES = bombs.cpp bombs1.cpp game.cpp

View File

@@ -1,5 +1,5 @@
#
# File: makefile.unx
# File: Makefile.in
# Author: Julian Smart
# Created: 1998
# Updated:
@@ -9,6 +9,9 @@
#
# Makefile for bombs example (UNIX).
top_srcdir = @top_srcdir@
top_builddir = ../..
PROGRAM=bombs
OBJECTS = bombs.o bombs1.o game.o

View File

@@ -1,2 +1 @@
Makefile.in

View File

@@ -1,9 +0,0 @@
AUTOMAKE_OPTIONS = 1.3 no-dependencies
SUFFIXES = .cpp
DEFS = @DEFS@ $(TOOLKIT_DEF) $(WXDEBUG_DEFINE)
noinst_PROGRAMS = caret
caret_SOURCES = caret.cpp

View File

@@ -1,5 +1,5 @@
#
# File: makefile.unx
# File: Makefile.in
# Author: Julian Smart
# Created: 1998
# Updated:
@@ -9,6 +9,9 @@
#
# Makefile for caret example (UNIX).
top_srcdir = @top_srcdir@
top_builddir = ../..
PROGRAM=caret
OBJECTS=$(PROGRAM).o

View File

@@ -1,2 +1 @@
Makefile.in

View File

@@ -1,9 +0,0 @@
AUTOMAKE_OPTIONS = 1.3 no-dependencies
SUFFIXES = .cpp
DEFS = @DEFS@ $(TOOLKIT_DEF) $(WXDEBUG_DEFINE)
noinst_PROGRAMS = checklst
checklst_SOURCES = checklst.cpp

View File

@@ -0,0 +1,20 @@
#
# File: Makefile.in
# Author: Julian Smart
# Created: 1998
# Updated:
# Copyright: (c) 1998 Julian Smart
#
# "%W% %G%"
#
# Makefile for checklst example (UNIX).
top_srcdir = @top_srcdir@
top_builddir = ../..
PROGRAM=checklst
OBJECTS=$(PROGRAM).o
include ../../src/makeprog.env

View File

@@ -1,2 +1 @@
Makefile.in

View File

@@ -1,9 +0,0 @@
AUTOMAKE_OPTIONS = 1.3 no-dependencies
SUFFIXES = .cpp
DEFS = @DEFS@ $(TOOLKIT_DEF) $(WXDEBUG_DEFINE)
noinst_PROGRAMS = conftest
conftest_SOURCES = conftest.cpp

View File

@@ -1,5 +1,5 @@
#
# File: makefile.unx
# File: Makefile.in
# Author: Julian Smart
# Created: 1998
# Updated:
@@ -9,6 +9,9 @@
#
# Makefile for config example (UNIX).
top_srcdir = @top_srcdir@
top_builddir = ../..
PROGRAM=conftest
OBJECTS=$(PROGRAM).o

View File

@@ -1,2 +1 @@
Makefile.in

View File

@@ -1,9 +0,0 @@
AUTOMAKE_OPTIONS = 1.3 no-dependencies
SUFFIXES = .cpp
DEFS = @DEFS@ $(TOOLKIT_DEF) $(WXDEBUG_DEFINE)
noinst_PROGRAMS = controls
controls_SOURCES = controls.cpp

View File

@@ -1,5 +1,5 @@
#
# File: makefile.unx
# File: Makefile.in
# Author: Julian Smart
# Created: 1998
# Updated:
@@ -9,6 +9,9 @@
#
# Makefile for controls example (UNIX).
top_srcdir = @top_srcdir@
top_builddir = ../..
PROGRAM=controls
OBJECTS=$(PROGRAM).o

View File

@@ -1,82 +0,0 @@
#
# Makefile : Builds wxWindows utils for Unix.
# Replace this with your own path if necessary
WXDIR = ..
# All common UNIX compiler flags and options are now in
# this central makefile.
include $(WXDIR)/src/make.env
TARGET=motif
# Change these if needed.
THISDIR = $(WXDIR)/samples
all:
cd bombs; $(MAKE) -f makefile.unx $(TARGET)
cd config; $(MAKE) -f makefile.unx $(TARGET)
cd controls; $(MAKE) -f makefile.unx $(TARGET)
cd dialogs; $(MAKE) -f makefile.unx $(TARGET)
cd docview; $(MAKE) -f makefile.unx $(TARGET)
cd docvwmdi; $(MAKE) -f makefile.unx $(TARGET)
cd dynamic; $(MAKE) -f makefile.unx $(TARGET)
cd fractal; $(MAKE) -f makefile.unx $(TARGET)
cd grid; $(MAKE) -f makefile.unx $(TARGET)
cd help; $(MAKE) -f makefile.unx $(TARGET)
cd image; $(MAKE) -f makefile.unx $(TARGET)
cd internat; $(MAKE) -f makefile.unx $(TARGET)
cd layout; $(MAKE) -f makefile.unx $(TARGET)
cd memcheck; $(MAKE) -f makefile.unx $(TARGET)
cd minifram; $(MAKE) -f makefile.unx $(TARGET)
cd minimal; $(MAKE) -f makefile.unx $(TARGET)
cd notebook; $(MAKE) -f makefile.unx $(TARGET)
cd printing; $(MAKE) -f makefile.unx $(TARGET)
cd proplist; $(MAKE) -f makefile.unx $(TARGET)
cd resource; $(MAKE) -f makefile.unx $(TARGET)
cd sashtest; $(MAKE) -f makefile.unx $(TARGET)
cd splitter; $(MAKE) -f makefile.unx $(TARGET)
cd tab; $(MAKE) -f makefile.unx $(TARGET)
cd toolbar; $(MAKE) -f makefile.unx $(TARGET)
cd typetest; $(MAKE) -f makefile.unx $(TARGET)
cd validate; $(MAKE) -f makefile.unx $(TARGET)
cd treectrl; $(MAKE) -f makefile.unx $(TARGET)
cd wxpoem; $(MAKE) -f makefile.unx $(TARGET)
cd dnd; $(MAKE) -f makefile.unx $(TARGET)
cd thread; $(MAKE) -f makefile.unx $(TARGET)
clean:
cd bombs; $(MAKE) -f makefile.unx clean$(TARGET)
cd config; $(MAKE) -f makefile.unx clean$(TARGET)
cd controls; $(MAKE) -f makefile.unx clean$(TARGET)
cd dialogs; $(MAKE) -f makefile.unx clean$(TARGET)
cd docview; $(MAKE) -f makefile.unx clean$(TARGET)
cd docvwmdi; $(MAKE) -f makefile.unx clean$(TARGET)
cd dynamic; $(MAKE) -f makefile.unx clean$(TARGET)
cd fractal; $(MAKE) -f makefile.unx clean$(TARGET)
cd grid; $(MAKE) -f makefile.unx clean$(TARGET)
cd help; $(MAKE) -f makefile.unx clean$(TARGET)
cd image; $(MAKE) -f makefile.unx clean$(TARGET)
cd internat; $(MAKE) -f makefile.unx clean$(TARGET)
cd layout; $(MAKE) -f makefile.unx clean$(TARGET)
cd memcheck; $(MAKE) -f makefile.unx clean$(TARGET)
cd minifram; $(MAKE) -f makefile.unx clean$(TARGET)
cd minimal; $(MAKE) -f makefile.unx clean$(TARGET)
cd notebook; $(MAKE) -f makefile.unx clean$(TARGET)
cd printing; $(MAKE) -f makefile.unx clean$(TARGET)
cd proplist; $(MAKE) -f makefile.unx clean$(TARGET)
cd resource; $(MAKE) -f makefile.unx clean$(TARGET)
cd sashtest; $(MAKE) -f makefile.unx clean$(TARGET)
cd splitter; $(MAKE) -f makefile.unx clean$(TARGET)
cd tab; $(MAKE) -f makefile.unx clean$(TARGET)
cd toolbar; $(MAKE) -f makefile.unx clean$(TARGET)
cd typetest; $(MAKE) -f makefile.unx clean$(TARGET)
cd validate; $(MAKE) -f makefile.unx clean$(TARGET)
cd treectrl; $(MAKE) -f makefile.unx clean$(TARGET)
cd wxpoem; $(MAKE) -f makefile.unx clean$(TARGET)
cd dnd; $(MAKE) -f makefile.unx clean$(TARGET)
cd thread; $(MAKE) -f makefile.unx clean$(TARGET)
cleanmotif: clean
motif: all