added some utils (tex2rtf, helpgen, makegen) to make system

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5452 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2000-01-16 13:25:47 +00:00
parent a0ff531586
commit 37b8e67987
9 changed files with 93 additions and 0 deletions

View File

@@ -3364,6 +3364,13 @@ AC_OUTPUT([
utils/glcanvas/${GL_TOOLKIT_DIR}/Makefile utils/glcanvas/${GL_TOOLKIT_DIR}/Makefile
utils/ogl/Makefile utils/ogl/Makefile
utils/ogl/src/Makefile utils/ogl/src/Makefile
utils/makegen/Makefile
utils/HelpGen/Makefile
utils/HelpGen/src/Makefile
utils/tex2rtf/Makefile
utils/tex2rtf/src/Makefile
utils/dialoged/Makefile
utils/dialoged/src/Makefile
], ],
[ [
chmod +x wx-config chmod +x wx-config

23
samples/grid/Makefile.in Normal file
View File

@@ -0,0 +1,23 @@
#
# File: makefile.unx
# Author: Julian Smart
# Created: 1998
# Updated:
# Copyright: (c) 1998 Julian Smart
#
# "%W% %G%"
#
# Makefile for toolbar example (UNIX).
top_srcdir = @top_srcdir@
top_builddir = ../..
program_dir = samples/grid
PROGRAM=grid
OBJECTS=test.o
include ../../src/makeprog.env

View File

@@ -0,0 +1,7 @@
all:
cd src; make
clean:
cd src; make clean

View File

@@ -0,0 +1,18 @@
#
# File: makefile.unx
# Author: Vadim Zeitlin
# Created: 1998
# Updated:
top_srcdir = @top_srcdir@
top_builddir = ../../..
program_dir = utils/HelpGen/src
PROGRAM=HelpGen
OBJECTS = HelpGen.o cjparser.o docripper.o ifcontext.o markup.o \
ripper_main.o scriptbinder.o sourcepainter.o srcparser.o \
wx_extra_imps.o
include ../../../src/makeprog.env

View File

@@ -3,8 +3,20 @@
# #
all: all:
cd tex2rtf; make
cd makegen; make
cd HelpGen; make
cd dialoged; make
cd wxMMedia2; make cd wxMMedia2; make
cd glcanvas; make
cd ogl; make
clean: clean:
cd tex2rtf; make clean
cd makegen; make clean
cd HelpGen; make clean
cd dialoged; make clean
cd wxMMedia2; make clean cd wxMMedia2; make clean
cd glcanvas; make clean
cd ogl; make clean

View File

@@ -0,0 +1,7 @@
all:
cd src; make
clean:
cd src; make clean

View File

@@ -7,7 +7,16 @@ program_dir = utils/makegen
PROGRAM=makegen PROGRAM=makegen
DATADIRS = templates
DATAFILES = templates/Makefile.in templates/makefile.b32 \
templates/makefile.bcc templates/makefile.dos \
templates/makefile.g95 templates/makefile.sc \
templates/makefile.sl templates/makefile.twn \
templates/makefile.unx templates/makefile.vc \
templates/makefile.wat
OBJECTS=$(PROGRAM).o OBJECTS=$(PROGRAM).o
include ../../src/makeprog.env include ../../src/makeprog.env

View File

@@ -0,0 +1,7 @@
all:
cd src; make
clean:
cd src; make clean

View File

@@ -9,6 +9,9 @@
# #
# Makefile for Tex2RTF (Unix) # Makefile for Tex2RTF (Unix)
EXTRADEFS=-DNO_GUI
# comment out if you want GUI version of tex2rtf...
top_srcdir = @top_srcdir@ top_srcdir = @top_srcdir@
top_builddir = ../../.. top_builddir = ../../..
program_dir = utils/tex2rtf/src program_dir = utils/tex2rtf/src