You can subscribe to this list here.
2003 |
Jan
|
Feb
(52) |
Mar
(47) |
Apr
(10) |
May
(5) |
Jun
|
Jul
(20) |
Aug
|
Sep
(5) |
Oct
(12) |
Nov
(22) |
Dec
(61) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(35) |
Feb
(33) |
Mar
(14) |
Apr
(7) |
May
(72) |
Jun
(35) |
Jul
(83) |
Aug
(28) |
Sep
(50) |
Oct
(4) |
Nov
(40) |
Dec
(39) |
2005 |
Jan
(38) |
Feb
(65) |
Mar
(58) |
Apr
(27) |
May
(2) |
Jun
|
Jul
(2) |
Aug
(25) |
Sep
(25) |
Oct
(74) |
Nov
(82) |
Dec
(82) |
2006 |
Jan
(68) |
Feb
(81) |
Mar
(52) |
Apr
(6) |
May
|
Jun
(14) |
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
(1) |
Dec
|
2007 |
Jan
(3) |
Feb
(15) |
Mar
(3) |
Apr
(4) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(4) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2009 |
Jan
|
Feb
(3) |
Mar
(3) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(3) |
2010 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(41) |
From: Dominique B. <ber...@us...> - 2010-12-23 17:58:21
|
Update of /cvsroot/windom/extensions/dfrm In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv17461 Modified Files: INSTALL Makefile Added Files: AUTHORS Makefile.in config.guess config.sub depcomp install-sh missing Log Message: adding autoconf/automake stuff (pass 2) --- NEW FILE: missing --- #! /bin/sh # Common stub for a few missing GNU programs while installing. scriptversion=2006-05-10.23 # Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006 # Free Software Foundation, Inc. # Originally by Fran,cois Pinard <pi...@ir...>, 1996. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA # 02110-1301, USA. # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. if test $# -eq 0; then echo 1>&2 "Try \`$0 --help' for more information" exit 1 fi run=: sed_output='s/.* --output[ =]\([^ ]*\).*/\1/p' sed_minuso='s/.* -o \([^ ]*\).*/\1/p' # In the cases where this matters, `missing' is being run in the # srcdir already. if test -f configure.ac; then configure_ac=configure.ac else configure_ac=configure.in fi msg="missing on your system" case $1 in --run) # Try to run requested program, and just exit if it succeeds. run= shift "$@" && exit 0 # Exit code 63 means version mismatch. This often happens # when the user try to use an ancient version of a tool on # a file that requires a minimum version. In this case we # we should proceed has if the program had been absent, or # if --run hadn't been passed. if test $? = 63; then run=: msg="probably too old" fi ;; -h|--h|--he|--hel|--help) echo "\ $0 [OPTION]... PROGRAM [ARGUMENT]... Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an error status if there is no known handling for PROGRAM. Options: -h, --help display this help and exit -v, --version output version information and exit --run try to run the given command, and emulate it if it fails Supported PROGRAM values: aclocal touch file \`aclocal.m4' autoconf touch file \`configure' autoheader touch file \`config.h.in' autom4te touch the output file, or create a stub one automake touch all \`Makefile.in' files bison create \`y.tab.[ch]', if possible, from existing .[ch] flex create \`lex.yy.c', if possible, from existing .c help2man touch the output file lex create \`lex.yy.c', if possible, from existing .c makeinfo touch the output file tar try tar, gnutar, gtar, then tar without non-portable flags yacc create \`y.tab.[ch]', if possible, from existing .[ch] Send bug reports to <bug...@gn...>." exit $? ;; -v|--v|--ve|--ver|--vers|--versi|--versio|--version) echo "missing $scriptversion (GNU Automake)" exit $? ;; -*) echo 1>&2 "$0: Unknown \`$1' option" echo 1>&2 "Try \`$0 --help' for more information" exit 1 ;; esac # Now exit if we have it, but it failed. Also exit now if we # don't have it and --version was passed (most likely to detect # the program). case $1 in lex|yacc) # Not GNU programs, they don't have --version. ;; tar) if test -n "$run"; then echo 1>&2 "ERROR: \`tar' requires --run" exit 1 elif test "x$2" = "x--version" || test "x$2" = "x--help"; then exit 1 fi ;; *) if test -z "$run" && ($1 --version) > /dev/null 2>&1; then # We have it, but it failed. exit 1 elif test "x$2" = "x--version" || test "x$2" = "x--help"; then # Could not run --version or --help. This is probably someone # running `$TOOL --version' or `$TOOL --help' to check whether # $TOOL exists and not knowing $TOOL uses missing. exit 1 fi ;; esac # If it does not exist, or fails to run (possibly an outdated version), # try to emulate it. case $1 in aclocal*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`acinclude.m4' or \`${configure_ac}'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." touch aclocal.m4 ;; autoconf) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`${configure_ac}'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." touch configure ;; autoheader) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`acconfig.h' or \`${configure_ac}'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}` test -z "$files" && files="config.h" touch_files= for f in $files; do case $f in *:*) touch_files="$touch_files "`echo "$f" | sed -e 's/^[^:]*://' -e 's/:.*//'`;; *) touch_files="$touch_files $f.in";; esac done touch $touch_files ;; automake*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." find . -type f -name Makefile.am -print | sed 's/\.am$/.in/' | while read f; do touch "$f"; done ;; autom4te) echo 1>&2 "\ WARNING: \`$1' is needed, but is $msg. You might have modified some files without having the proper tools for further handling them. You can get \`$1' as part of \`Autoconf' from any GNU archive site." file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -f "$file"; then touch $file else test -z "$file" || exec >$file echo "#! /bin/sh" echo "# Created by GNU Automake missing as a replacement of" echo "# $ $@" echo "exit 0" chmod +x $file exit 1 fi ;; bison|yacc) echo 1>&2 "\ WARNING: \`$1' $msg. You should only need it if you modified a \`.y' file. You may need the \`Bison' package in order for those modifications to take effect. You can get \`Bison' from any GNU archive site." rm -f y.tab.c y.tab.h if test $# -ne 1; then eval LASTARG="\${$#}" case $LASTARG in *.y) SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'` if test -f "$SRCFILE"; then cp "$SRCFILE" y.tab.c fi SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'` if test -f "$SRCFILE"; then cp "$SRCFILE" y.tab.h fi ;; esac fi if test ! -f y.tab.h; then echo >y.tab.h fi if test ! -f y.tab.c; then echo 'main() { return 0; }' >y.tab.c fi ;; lex|flex) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a \`.l' file. You may need the \`Flex' package in order for those modifications to take effect. You can get \`Flex' from any GNU archive site." rm -f lex.yy.c if test $# -ne 1; then eval LASTARG="\${$#}" case $LASTARG in *.l) SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'` if test -f "$SRCFILE"; then cp "$SRCFILE" lex.yy.c fi ;; esac fi if test ! -f lex.yy.c; then echo 'main() { return 0; }' >lex.yy.c fi ;; help2man) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a dependency of a manual page. You may need the \`Help2man' package in order for those modifications to take effect. You can get \`Help2man' from any GNU archive site." file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -f "$file"; then touch $file else test -z "$file" || exec >$file echo ".ab help2man is required to generate this page" exit 1 fi ;; makeinfo) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a \`.texi' or \`.texinfo' file, or any other file indirectly affecting the aspect of the manual. The spurious call might also be the consequence of using a buggy \`make' (AIX, DU, IRIX). You might want to install the \`Texinfo' package or the \`GNU make' package. Grab either from any GNU archive site." # The file to touch is that specified with -o ... file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -z "$file"; then # ... or it is the one specified with @setfilename ... infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'` file=`sed -n ' /^@setfilename/{ s/.* \([^ ]*\) *$/\1/ p q }' $infile` # ... or it is derived from the source name (dir/f.texi becomes f.info) test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info fi # If the file does not exist, the user really needs makeinfo; # let's fail without touching anything. test -f $file || exit 1 touch $file ;; tar) shift # We have already tried tar in the generic part. # Look for gnutar/gtar before invocation to avoid ugly error # messages. if (gnutar --version > /dev/null 2>&1); then gnutar "$@" && exit 0 fi if (gtar --version > /dev/null 2>&1); then gtar "$@" && exit 0 fi firstarg="$1" if shift; then case $firstarg in *o*) firstarg=`echo "$firstarg" | sed s/o//` tar "$firstarg" "$@" && exit 0 ;; esac case $firstarg in *h*) firstarg=`echo "$firstarg" | sed s/h//` tar "$firstarg" "$@" && exit 0 ;; esac fi echo 1>&2 "\ WARNING: I can't seem to be able to run \`tar' with the given arguments. You may want to install GNU tar or Free paxutils, or check the command line arguments." exit 1 ;; *) echo 1>&2 "\ WARNING: \`$1' is needed, and is $msg. You might have modified some files without having the proper tools for further handling them. Check the \`README' file, it often tells you about the needed prerequisites for installing this package. You may also peek at any GNU archive site, in case some other package would contain this missing \`$1' program." exit 1 ;; esac exit 0 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-end: "$" # End: --- NEW FILE: Makefile.in --- # Makefile.in generated by automake 1.10.2 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # DFRM: Dynamic FoRMular # Copyright (c) 1997-2011 Dominique Bereziat VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = . DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in $(top_srcdir)/configure AUTHORS COPYING \ ChangeLog INSTALL NEWS TODO config.guess config.sub depcomp \ install-sh missing ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ configure.lineno config.status.lineno mkinstalldirs = $(install_sh) -d CONFIG_CLEAN_FILES = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ html-recursive info-recursive install-data-recursive \ install-dvi-recursive install-exec-recursive \ install-html-recursive install-info-recursive \ install-pdf-recursive install-ps-recursive install-recursive \ installcheck-recursive installdirs-recursive pdf-recursive \ ps-recursive uninstall-recursive RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) am__remove_distdir = \ { test ! -d $(distdir) \ || { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \ && rm -fr $(distdir); }; } DIST_ARCHIVES = $(distdir).tar.gz GZIP_ENV = --best distuninstallcheck_listfiles = find . -type f -print distcleancheck_listfiles = find . -type f -print ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = include src docs all: all-recursive .SUFFIXES: am--refresh: @: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ echo ' cd $(srcdir) && $(AUTOMAKE) --gnu '; \ cd $(srcdir) && $(AUTOMAKE) --gnu \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ echo ' $(SHELL) ./config.status'; \ $(SHELL) ./config.status;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) $(SHELL) ./config.status --recheck $(top_srcdir)/configure: $(am__configure_deps) cd $(srcdir) && $(AUTOCONF) $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) # This directory's subdirectories are mostly independent; you can cd # into them and run `make' without going through this Makefile. # To change the values of `make' variables: instead of editing Makefiles, # (1) if the variable is set in `config.status', edit `config.status' # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): @failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" $(RECURSIVE_CLEAN_TARGETS): @failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ rev=''; for subdir in $$list; do \ if test "$$subdir" = "."; then :; else \ rev="$$subdir $$rev"; \ fi; \ done; \ rev="$$rev ."; \ target=`echo $@ | sed s/-recursive//`; \ for subdir in $$rev; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ done ctags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$tags $$unique; \ fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && cd $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) $$here distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) $(am__remove_distdir) test -d $(distdir) || mkdir $(distdir) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ else \ test -f $(distdir)/$$file \ || cp -p $$d/$$file $(distdir)/$$file \ || exit 1; \ fi; \ done list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ distdir=`$(am__cd) $(distdir) && pwd`; \ top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ (cd $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$top_distdir" \ distdir="$$distdir/$$subdir" \ am__remove_distdir=: \ am__skip_length_check=: \ distdir) \ || exit 1; \ fi; \ done -find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ || chmod -R a+r $(distdir) dist-gzip: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__remove_distdir) dist-bzip2: distdir tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2 $(am__remove_distdir) dist-lzma: distdir tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma $(am__remove_distdir) dist-tarZ: distdir tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__remove_distdir) dist-shar: distdir shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz $(am__remove_distdir) dist-zip: distdir -rm -f $(distdir).zip zip -rq $(distdir).zip $(distdir) $(am__remove_distdir) dist dist-all: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__remove_distdir) # This target untars the dist file and tries a VPATH configuration. Then # it guarantees that the distribution is self-contained by making another # tarfile. distcheck: dist case '$(DIST_ARCHIVES)' in \ *.tar.gz*) \ GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lzma*) \ unlzma -c $(distdir).tar.lzma | $(am__untar) ;;\ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ esac chmod -R a-w $(distdir); chmod a+w $(distdir) mkdir $(distdir)/_build mkdir $(distdir)/_inst chmod a-w $(distdir) dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ && cd $(distdir)/_build \ && ../configure --srcdir=.. --prefix="$$dc_install_base" \ $(DISTCHECK_CONFIGURE_FLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) dvi \ && $(MAKE) $(AM_MAKEFLAGS) check \ && $(MAKE) $(AM_MAKEFLAGS) install \ && $(MAKE) $(AM_MAKEFLAGS) installcheck \ && $(MAKE) $(AM_MAKEFLAGS) uninstall \ && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ distuninstallcheck \ && chmod -R a-w "$$dc_install_base" \ && ({ \ (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ } || { rm -rf "$$dc_destdir"; exit 1; }) \ && rm -rf "$$dc_destdir" \ && $(MAKE) $(AM_MAKEFLAGS) dist \ && rm -rf $(DIST_ARCHIVES) \ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck $(am__remove_distdir) @(echo "$(distdir) archives ready for distribution: "; \ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' distuninstallcheck: @cd $(distuninstallcheck_dir) \ && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \ || { echo "ERROR: files left after uninstall:" ; \ if test -n "$(DESTDIR)"; then \ echo " (check DESTDIR support)"; \ fi ; \ $(distuninstallcheck_listfiles) ; \ exit 1; } >&2 distcleancheck: distclean @if test '$(srcdir)' = . ; then \ echo "ERROR: distcleancheck can only run from a VPATH build" ; \ exit 1 ; \ fi @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left in build directory after distclean:" ; \ $(distcleancheck_listfiles) ; \ exit 1; } >&2 check-am: all-am check: check-recursive all-am: Makefile all-local installdirs: installdirs-recursive installdirs-am: install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic clean-local mostlyclean-am distclean: distclean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive info: info-recursive info-am: install-data-am: install-data-local install-dvi: install-dvi-recursive install-exec-am: install-html: install-html-recursive install-info: install-info-recursive install-man: install-pdf: install-pdf-recursive install-ps: install-ps-recursive installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf $(top_srcdir)/autom4te.cache -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: uninstall-local .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \ install-strip .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ all all-am all-local am--refresh check check-am clean \ clean-generic clean-local ctags ctags-recursive dist dist-all \ dist-bzip2 dist-gzip dist-lzma dist-shar dist-tarZ dist-zip \ distcheck distclean distclean-generic distclean-tags \ distcleancheck distdir distuninstallcheck dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-data-local install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-man install-pdf \ install-pdf-am install-ps install-ps-am install-strip \ installcheck installcheck-am installdirs installdirs-am \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic pdf pdf-am ps ps-am tags tags-recursive \ uninstall uninstall-am uninstall-local all-local: docs/html/index.html docs/html/index.html: Doxyfile src/doxydoc.c @doxygen -s $< >/dev/null clean-local: $(RM) -r docs/html install-data-local: mkdir -p $(DESTDIR)$(docdir)/html for file in docs/html/*.* ; do \ $(INSTALL_DATA) $$file $(DESTDIR)/$(docdir)/html ; \ done uninstall-local: $(RM) -r $(DESTDIR)$(docdir)/html # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: Index: Makefile =================================================================== RCS file: /cvsroot/windom/extensions/dfrm/Makefile,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- Makefile 9 Mar 2006 20:31:40 -0000 1.4 +++ Makefile 23 Dec 2010 17:58:11 -0000 1.5 @@ -1,60 +1,614 @@ -# Makefile to build DFRM package -#!make -f -# -# Dynamic Forms for WinDom -# (copyleft) by Dominique Bereziat -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -# - - -DEST = . -#DEST = /usr/local - -SOURCES=$(wildcard src/*.c) src/globals.h $(wildcard src/*.mak) src/Makefile \ - $(wildcard examples/*.c) $(wildcard examples/icons.*) \ - examples/img.h examples/lang.h \ - examples/dom.gif examples/motif2.iff $(wildcard examples/lang.??) \ - $(wildcard examples/*.app) examples/Makefile $(wildcard examples/*.mak) \ - include/windom/mt_dfrm.h include/windom/dfrm.h \ - lib/gcc295/libdfrm.a \ - TODO README NEWS COPYRIGHT INSTALL Makefile ChangeLog bin/dfrmstr.ttp - -VERSION=$(shell cat VERSION) - -all:; $(MAKE) -C src -docs: .FORCE; doxygen -s Doxyfile > /dev/null -test:; echo $(SOURCES) -export: - rm -rf ../dfrm-$(VERSION) - mkdir -p ../dfrm-$(VERSION)/src ../dfrm-$(VERSION)/include/windom - mkdir -p ../dfrm-$(VERSION)/lib/gcc295 ../dfrm-$(VERSION)/bin - cp -r * ../dfrm-$(VERSION) - cd .. && tar cvfz dfrm-$(VERSION).tgz --exclude=CVS --exclude=*~ $(addprefix dfrm-$(VERSION)/,$(SOURCES)) dfrm-$(VERSION)/docs - rm -rf ../dfrm-$(VERSION) -.FORCE: - -PACKAGE_NAME = dfrm -RPMSUFFIX = $(VERSION) - -srcrpm: - rm -rf ../$(PACKAGE_NAME)-$(RPMSUFFIX) - mkdir -p ../$(PACKAGE_NAME)-$(RPMSUFFIX) - cp -r src include ../$(PACKAGE_NAME)-$(RPMSUFFIX) - rm -rf ../$(PACKAGE_NAME)-$(RPMSUFFIX)/src/gcc295 - rm -rf ../$(PACKAGE_NAME)-$(RPMSUFFIX)/src/dfrmstr.o - mkdir ../$(PACKAGE_NAME)-$(RPMSUFFIX)/lib - cd .. && tar cvzf $(PACKAGE_NAME)-$(RPMSUFFIX).tar.gz --exclude=CVS --exclude=.* --exclude=*~ --exclude=*.ttp $(PACKAGE_NAME)-$(RPMSUFFIX) - rm -rf ../$(PACKAGE_NAME)-$(RPMSUFFIX) +# Makefile.in generated by automake 1.10.2 from Makefile.am. +# Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + +# DFRM: Dynamic FoRMular +# Copyright (c) 1997-2011 Dominique Bereziat + +pkgdatadir = $(datadir)/dfrm +pkglibdir = $(libdir)/dfrm +pkgincludedir = $(includedir)/dfrm +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = i686-pc-linux-gnu +host_triplet = m68k-atari-mint +target_triplet = m68k-atari-mint +subdir = . +DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \ + $(srcdir)/Makefile.in $(top_srcdir)/configure AUTHORS COPYING \ + ChangeLog INSTALL NEWS TODO config.guess config.sub depcomp \ + install-sh missing +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ + configure.lineno config.status.lineno +mkinstalldirs = $(install_sh) -d +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ + html-recursive info-recursive install-data-recursive \ + install-dvi-recursive install-exec-recursive \ + install-html-recursive install-info-recursive \ + install-pdf-recursive install-ps-recursive install-recursive \ + installcheck-recursive installdirs-recursive pdf-recursive \ + ps-recursive uninstall-recursive +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +distdir = $(PACKAGE)-$(VERSION) +top_distdir = $(distdir) +am__remove_distdir = \ + { test ! -d $(distdir) \ + || { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \ + && rm -fr $(distdir); }; } +DIST_ARCHIVES = $(distdir).tar.gz +GZIP_ENV = --best +distuninstallcheck_listfiles = find . -type f -print +distcleancheck_listfiles = find . -type f -print +ACLOCAL = ${SHELL} /home/bereziat/Aranym/src/sf/extensions/dfrm/missing --run aclocal-1.10 +AMTAR = ${SHELL} /home/bereziat/Aranym/src/sf/extensions/dfrm/missing --run tar +AUTOCONF = ${SHELL} /home/bereziat/Aranym/src/sf/extensions/dfrm/missing --run autoconf +AUTOHEADER = ${SHELL} /home/bereziat/Aranym/src/sf/extensions/dfrm/missing --run autoheader +AUTOMAKE = ${SHELL} /home/bereziat/Aranym/src/sf/extensions/dfrm/missing --run automake-1.10 +AWK = gawk +CC = m68k-atari-mint-gcc +CCDEPMODE = depmode=gcc +CFLAGS = -g -O2 +CPP = m68k-atari-mint-gcc -E +CPPFLAGS = +CYGPATH_W = echo +DEFS = -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBGEM=1 -DHAVE_LIBLDG=1 -DHAVE_LIBWINDOM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_FCNTL_H=1 -DHAVE_LIMITS_H=1 -DHAVE_STDDEF_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MALLOC=0 -Dmalloc=rpl_malloc -DHAVE_STDLIB_H=1 -DHAVE_REALLOC=0 -Drealloc=rpl_realloc -DHAVE_VPRINTF=1 -DHAVE_DOPRNT=1 -DHAVE_STRDUP=1 +DEPDIR = .deps +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /bin/grep -E +EXEEXT = +GREP = /bin/grep +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +LDFLAGS = +LIBOBJS = ${LIBOBJDIR}malloc$U.o ${LIBOBJDIR}realloc$U.o +LIBS = -lwindom -lldg -lgem +LN_S = ln -s +LTLIBOBJS = ${LIBOBJDIR}malloc$U.lo ${LIBOBJDIR}realloc$U.lo +MAKEINFO = ${SHELL} /home/bereziat/Aranym/src/sf/extensions/dfrm/missing --run makeinfo +MKDIR_P = /bin/mkdir -p +OBJEXT = o +PACKAGE = dfrm +PACKAGE_BUGREPORT = +PACKAGE_NAME = +PACKAGE_STRING = +PACKAGE_TARNAME = +PACKAGE_VERSION = +PATH_SEPARATOR = : +RANLIB = m68k-atari-mint-ranlib +SET_MAKE = +SHELL = /bin/bash +STRIP = m68k-atari-mint-strip +VERSION = 0.4.5 +abs_builddir = /home/bereziat/Aranym/src/sf/extensions/dfrm +abs_srcdir = /home/bereziat/Aranym/src/sf/extensions/dfrm +abs_top_builddir = /home/bereziat/Aranym/src/sf/extensions/dfrm +abs_top_srcdir = /home/bereziat/Aranym/src/sf/extensions/dfrm +ac_ct_CC = +am__include = include +am__leading_dot = . +am__quote = +am__tar = ${AMTAR} chof - "$$tardir" +am__untar = ${AMTAR} xf - +bindir = ${exec_prefix}/bin +build = i686-pc-linux-gnu +build_alias = +build_cpu = i686 +build_os = linux-gnu +build_vendor = pc +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share +docdir = ${datarootdir}/doc/${PACKAGE} +dvidir = ${docdir} +exec_prefix = ${prefix} +host = m68k-atari-mint +host_alias = m68k-atari-mint +host_cpu = m68k +host_os = mint +host_vendor = atari +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = $(SHELL) /home/bereziat/Aranym/src/sf/extensions/dfrm/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = /bin/mkdir -p +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /usr/m68k-atari-mint +program_transform_name = s,x,x, +psdir = ${docdir} +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = . +sysconfdir = ${prefix}/etc +target = m68k-atari-mint +target_alias = +target_cpu = m68k +target_os = mint +target_vendor = atari +top_build_prefix = +top_builddir = . +top_srcdir = . +SUBDIRS = include src docs +all: all-recursive + +.SUFFIXES: +am--refresh: + @: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + echo ' cd $(srcdir) && $(AUTOMAKE) --gnu '; \ + cd $(srcdir) && $(AUTOMAKE) --gnu \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnu Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + echo ' $(SHELL) ./config.status'; \ + $(SHELL) ./config.status;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + $(SHELL) ./config.status --recheck + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(srcdir) && $(AUTOCONF) +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) + +# This directory's subdirectories are mostly independent; you can cd +# into them and run `make' without going through this Makefile. +# To change the values of `make' variables: instead of editing Makefiles, +# (1) if the variable is set in `config.status', edit `config.status' +# (which will cause the Makefiles to be regenerated when you run `make'); +# (2) otherwise, pass the desired values on the `make' command line. +$(RECURSIVE_TARGETS): + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +$(RECURSIVE_CLEAN_TARGETS): + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ + dot_seen=no; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + rev=''; for subdir in $$list; do \ + if test "$$subdir" = "."; then :; else \ + rev="$$subdir $$rev"; \ + fi; \ + done; \ + rev="$$rev ."; \ + target=`echo $@ | sed s/-recursive//`; \ + for subdir in $$rev; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done && test -z "$$fail" +tags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ + test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ + done +ctags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ + test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ + done + +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS + +TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + tags=; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi +ctags: CTAGS +CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + tags=; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$tags$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$tags $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && cd $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) $$here + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + $(am__remove_distdir) + test -d $(distdir) || mkdir $(distdir) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done + list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + distdir=`$(am__cd) $(distdir) && pwd`; \ + top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ + (cd $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$top_distdir" \ + distdir="$$distdir/$$subdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + distdir) \ + || exit 1; \ + fi; \ + done + -find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \ + ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ + ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ + ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ + || chmod -R a+r $(distdir) +dist-gzip: distdir + tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz + $(am__remove_distdir) + +dist-bzip2: distdir + tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2 + $(am__remove_distdir) + +dist-lzma: distdir + tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma + $(am__remove_distdir) + +dist-tarZ: distdir + tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z + $(am__remove_distdir) + +dist-shar: distdir + shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz + $(am__remove_distdir) + +dist-zip: distdir + -rm -f $(distdir).zip + zip -rq $(distdir).zip $(distdir) + $(am__remove_distdir) + +dist dist-all: distdir + tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz + $(am__remove_distdir) + +# This target untars the dist file and tries a VPATH configuration. Then +# it guarantees that the distribution is self-contained by making another +# tarfile. +distcheck: dist + case '$(DIST_ARCHIVES)' in \ + *.tar.gz*) \ + GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\ + *.tar.bz2*) \ + bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\ + *.tar.lzma*) \ + unlzma -c $(distdir).tar.lzma | $(am__untar) ;;\ + *.tar.Z*) \ + uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ + *.shar.gz*) \ + GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\ + *.zip*) \ + unzip $(distdir).zip ;;\ + esac + chmod -R a-w $(distdir); chmod a+w $(distdir) + mkdir $(distdir)/_build + mkdir $(distdir)/_inst + chmod a-w $(distdir) + dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ + && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ + && cd $(distdir)/_build \ + && ../configure --srcdir=.. --prefix="$$dc_install_base" \ + $(DISTCHECK_CONFIGURE_FLAGS) \ + && $(MAKE) $(AM_MAKEFLAGS) \ + && $(MAKE) $(AM_MAKEFLAGS) dvi \ + && $(MAKE) $(AM_MAKEFLAGS) check \ + && $(MAKE) $(AM_MAKEFLAGS) install \ + && $(MAKE) $(AM_MAKEFLAGS) installcheck \ + && $(MAKE) $(AM_MAKEFLAGS) uninstall \ + && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ + distuninstallcheck \ + && chmod -R a-w "$$dc_install_base" \ + && ({ \ + (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ + && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ + && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ + && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ + distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ + } || { rm -rf "$$dc_destdir"; exit 1; }) \ + && rm -rf "$$dc_destdir" \ + && $(MAKE) $(AM_MAKEFLAGS) dist \ + && rm -rf $(DIST_ARCHIVES) \ + && $(MAKE) $(AM_MAKEFLAGS) distcleancheck + $(am__remove_distdir) + @(echo "$(distdir) archives ready for distribution: "; \ + list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ + sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' +distuninstallcheck: + @cd $(distuninstallcheck_dir) \ + && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \ + || { echo "ERROR: files left after uninstall:" ; \ + if test -n "$(DESTDIR)"; then \ + echo " (check DESTDIR support)"; \ + fi ; \ + $(distuninstallcheck_listfiles) ; \ + exit 1; } >&2 +distcleancheck: distclean + @if test '$(srcdir)' = . ; then \ + echo "ERROR: distcleancheck can only run from a VPATH build" ; \ + exit 1 ; \ + fi + @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ + || { echo "ERROR: files left in build directory after distclean:" ; \ + $(distcleancheck_listfiles) ; \ + exit 1; } >&2 +check-am: all-am +check: check-recursive +all-am: Makefile all-local +installdirs: installdirs-recursive +installdirs-am: +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-local mostlyclean-am + +distclean: distclean-recursive + -rm -f $(am__CONFIG_DISTCLEAN_FILES) + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +info: info-recursive + +info-am: + +install-data-am: install-data-local + +install-dvi: install-dvi-recursive + +install-exec-am: + +install-html: install-html-recursive + +install-info: install-info-recursive + +install-man: + +install-pdf: install-pdf-recursive + +install-ps: install-ps-recursive + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f $(am__CONFIG_DISTCLEAN_FILES) + -rm -rf $(top_srcdir)/autom4te.cache + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: uninstall-local + +.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \ + install-strip + +.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ + all all-am all-local am--refresh check check-am clean \ + clean-generic clean-local ctags ctags-recursive dist dist-all \ + dist-bzip2 dist-gzip dist-lzma dist-shar dist-tarZ dist-zip \ + distcheck distclean distclean-generic distclean-tags \ + distcleancheck distdir distuninstallcheck dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-data-local install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs installdirs-am \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic pdf pdf-am ps ps-am tags tags-recursive \ + uninstall uninstall-am uninstall-local + + +all-local: docs/html/index.html + +docs/html/index.html: Doxyfile src/doxydoc.c + @doxygen -s $< >/dev/null +clean-local: + $(RM) -r docs/html + +install-data-local: + mkdir -p $(DESTDIR)$(docdir)/html + for file in docs/html/*.* ; do \ + $(INSTALL_DATA) $$file $(DESTDIR)/$(docdir)/html ; \ + done + +uninstall-local: + $(RM) -r $(DESTDIR)$(docdir)/html +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: --- NEW FILE: config.guess --- #! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 # Free Software Foundation, Inc. timestamp='2008-01-23' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License [...1487 lines suppressed...] /bin/universe = `(/bin/universe) 2>/dev/null` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` /bin/arch = `(/bin/arch) 2>/dev/null` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` UNAME_MACHINE = ${UNAME_MACHINE} UNAME_RELEASE = ${UNAME_RELEASE} UNAME_SYSTEM = ${UNAME_SYSTEM} UNAME_VERSION = ${UNAME_VERSION} EOF exit 1 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: --- NEW FILE: config.sub --- #! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 # Free Software Foundation, Inc. timestamp='2008-01-16' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software # can handle that machine. It does not imply ALL GNU software can. # # This file is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of [...1619 lines suppressed...] -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) vendor=atari ;; -vos*) vendor=stratus ;; esac basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` ;; esac echo $basic_machine$os exit # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: --- NEW FILE: depcomp --- #! /bin/sh # depcomp - compile a program generating dependencies as side-effects scriptversion=2007-03-29.01 # Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006, 2007 Free Software # Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA # 02110-1301, USA. # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Originally written by Alexandre Oliva <ol...@dc...>. case $1 in '') echo "$0: No command. Try \`$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: depcomp [--help] [--version] PROGRAM [ARGS] Run PROGRAMS ARGS to compile a file, generating dependencies as side-effects. Environment variables: depmode Dependency tracking mode. source Source file read by `PROGRAMS ARGS'. object Object file output by `PROGRAMS ARGS'. DEPDIR directory where to store dependencies. depfile Dependency file to output. tmpdepfile Temporary file to use when outputing dependencies. libtool Whether libtool is used (yes/no). Report bugs to <bug...@gn...>. EOF exit $? ;; -v | --v*) echo "depcomp $scriptversion" exit $? ;; esac if test -z "$depmode" || test -z "$source" || test -z "$object"; then echo "depcomp: Variables source, object and depmode must be set" 1>&2 exit 1 fi # Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po. depfile=${depfile-`echo "$object" | sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`} tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} rm -f "$tmpdepfile" # Some modes work just like other modes, but use different flags. We # parameterize here, but still list the modes in the big case below, # to make depend.m4 easier to write. Note that we *cannot* use a case # here, because this file can only contain one case statement. if test "$depmode" = hp; then # HP compiler uses -M and no extra arg. gccflag=-M depmode=gcc fi if test "$depmode" = dashXmstdout; then # This is just like dashmstdout with a different argument. dashmflag=-xM depmode=dashmstdout fi case "$depmode" in gcc3) ## gcc 3 implements dependency tracking that does exactly what ## we want. Yay! Note: for some reason libtool 1.4 doesn't like ## it if -MD -MP comes after the -MF stuff. Hmm. ## Unfortunately, FreeBSD c89 acceptance of flags depends upon ## the command line argument order; so add the flags where they ## appear in depend2.am. Note that the slowdown incurred here ## affects only configure: in makefiles, %FASTDEP% shortcuts this. for arg do case $arg in -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; *) set fnord "$@" "... [truncated message content] |
From: Dominique B. <ber...@us...> - 2010-12-23 17:58:19
|
Update of /cvsroot/windom/extensions/dfrm/docs/tutorial In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv17461/docs/tutorial Added Files: Makefile.in Log Message: adding autoconf/automake stuff (pass 2) --- NEW FILE: Makefile.in --- # Makefile.in generated by automake 1.10.2 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = docs/tutorial DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_CLEAN_FILES = SOURCES = DIST_SOURCES = DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ EXTRA_DIST = index.html Makefile.gcc Makefile.pc tut_1.html \ tut_1-1.gif tut_1-2.gif tut_1-3.gif tut_1-4.gif tut_1.c \ tut_2.html tut_2.c tut_3.html \ lang.c lang.h lang.fr lang.en lang.mak \ toolbar.c all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu docs/tutorial/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu docs/tutorial/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh tags: TAGS TAGS: ctags: CTAGS CTAGS: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ else \ test -f $(distdir)/$$file \ || cp -p $$d/$$file $(distdir)/$$file \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-exec-am: install-html: install-html-am install-info: install-info-am install-man: install-pdf: install-pdf-am install-ps: install-ps-am installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic distclean \ distclean-generic distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic pdf pdf-am ps ps-am uninstall uninstall-am # a nettoyer # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: |
From: Dominique B. <ber...@us...> - 2010-12-23 17:58:19
|
Update of /cvsroot/windom/extensions/dfrm/src In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv17461/src Modified Files: doxydoc.c Added Files: Makefile.in Log Message: adding autoconf/automake stuff (pass 2) Index: doxydoc.c =================================================================== RCS file: /cvsroot/windom/extensions/dfrm/src/doxydoc.c,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- doxydoc.c 23 Dec 2010 17:50:08 -0000 1.10 +++ doxydoc.c 23 Dec 2010 17:58:11 -0000 1.11 @@ -333,10 +333,10 @@ * \page history History & Changelog * * \section news The NEWS file - * \include ../NEWS + * \include "NEWS" * * \section changelog The ChangeLog file - * \include ../ChangeLog + * \include "ChangeLog" */ --- NEW FILE: Makefile.in --- # Makefile.in generated by automake 1.10.2 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # DFRM: Dynamic FoRMular # Copyright (c) 1997-2007 Dominique Bereziat # Status : LGPL # $Id: Makefile.in,v 1.1 2010/12/23 17:58:11 bereziat Exp $ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ bin_PROGRAMS = dfrmstr.app$(EXEEXT) subdir = src DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_CLEAN_FILES = am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)" libLIBRARIES_INSTALL = $(INSTALL_DATA) LIBRARIES = $(lib_LIBRARIES) AR = ar ARFLAGS = cru libdfrm_a_AR = $(AR) $(ARFLAGS) libdfrm_a_LIBADD = am_libdfrm_a_OBJECTS = core.$(OBJEXT) tune.$(OBJEXT) align.$(OBJEXT) \ tedinfo.$(OBJEXT) string.$(OBJEXT) box.$(OBJEXT) \ icon.$(OBJEXT) image.$(OBJEXT) rscstr.$(OBJEXT) \ attach.$(OBJEXT) menu.$(OBJEXT) slider.$(OBJEXT) \ line.$(OBJEXT) thumb.$(OBJEXT) debug.$(OBJEXT) libdfrm_a_OBJECTS = $(am_libdfrm_a_OBJECTS) binPROGRAMS_INSTALL = $(INSTALL_PROGRAM) PROGRAMS = $(bin_PROGRAMS) dfrmstr_app_SOURCES = dfrmstr.c dfrmstr_app_OBJECTS = dfrmstr.$(OBJEXT) dfrmstr_app_LDADD = $(LDADD) DEFAULT_INCLUDES = -I.@am__isrc@ depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libdfrm_a_SOURCES) dfrmstr.c DIST_SOURCES = $(libdfrm_a_SOURCES) dfrmstr.c ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ INCLUDES = -I../include libdfrm_a_SOURCES = core.c tune.c align.c tedinfo.c string.c box.c icon.c \ image.c rscstr.c attach.c menu.c slider.c line.c thumb.c \ debug.c globals.h AM_CFLAGS = \ -O2 -fomit-frame-pointer \ -Wall \ -Wmissing-prototypes \ -Winline \ -Wshadow \ -Wpointer-arith \ -Wcast-qual \ -Waggregate-return lib_LIBRARIES = libdfrm.a all: all-am .SUFFIXES: .SUFFIXES: .c .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu src/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh install-libLIBRARIES: $(lib_LIBRARIES) @$(NORMAL_INSTALL) test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)" @list='$(lib_LIBRARIES)'; for p in $$list; do \ if test -f $$p; then \ f=$(am__strip_dir) \ echo " $(libLIBRARIES_INSTALL) '$$p' '$(DESTDIR)$(libdir)/$$f'"; \ $(libLIBRARIES_INSTALL) "$$p" "$(DESTDIR)$(libdir)/$$f"; \ else :; fi; \ done @$(POST_INSTALL) @list='$(lib_LIBRARIES)'; for p in $$list; do \ if test -f $$p; then \ p=$(am__strip_dir) \ echo " $(RANLIB) '$(DESTDIR)$(libdir)/$$p'"; \ $(RANLIB) "$(DESTDIR)$(libdir)/$$p"; \ else :; fi; \ done uninstall-libLIBRARIES: @$(NORMAL_UNINSTALL) @list='$(lib_LIBRARIES)'; for p in $$list; do \ p=$(am__strip_dir) \ echo " rm -f '$(DESTDIR)$(libdir)/$$p'"; \ rm -f "$(DESTDIR)$(libdir)/$$p"; \ done clean-libLIBRARIES: -test -z "$(lib_LIBRARIES)" || rm -f $(lib_LIBRARIES) libdfrm.a: $(libdfrm_a_OBJECTS) $(libdfrm_a_DEPENDENCIES) -rm -f libdfrm.a $(libdfrm_a_AR) libdfrm.a $(libdfrm_a_OBJECTS) $(libdfrm_a_LIBADD) $(RANLIB) libdfrm.a install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" @list='$(bin_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ if test -f $$p \ ; then \ f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ echo " $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(bindir)/$$f'"; \ $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(bindir)/$$f" || exit 1; \ else :; fi; \ done uninstall-binPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(bin_PROGRAMS)'; for p in $$list; do \ f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ echo " rm -f '$(DESTDIR)$(bindir)/$$f'"; \ rm -f "$(DESTDIR)$(bindir)/$$f"; \ done clean-binPROGRAMS: -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS) dfrmstr.app$(EXEEXT): $(dfrmstr_app_OBJECTS) $(dfrmstr_app_DEPENDENCIES) @rm -f dfrmstr.app$(EXEEXT) $(LINK) $(dfrmstr_app_OBJECTS) $(dfrmstr_app_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/align.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/attach.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/box.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/core.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/debug.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dfrmstr.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/icon.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/image.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/line.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/menu.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rscstr.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/slider.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/string.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tedinfo.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/thumb.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tune.Po@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$tags $$unique; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && cd $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) $$here distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ else \ test -f $(distdir)/$$file \ || cp -p $$d/$$file $(distdir)/$$file \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LIBRARIES) $(PROGRAMS) installdirs: for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-binPROGRAMS clean-generic clean-libLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-exec-am: install-binPROGRAMS install-libLIBRARIES install-html: install-html-am install-info: install-info-am install-man: install-pdf: install-pdf-am install-ps: install-ps-am installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-binPROGRAMS uninstall-libLIBRARIES .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \ clean-generic clean-libLIBRARIES ctags distclean \ distclean-compile distclean-generic distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ install-binPROGRAMS install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am \ install-libLIBRARIES install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic pdf pdf-am ps ps-am tags uninstall \ uninstall-am uninstall-binPROGRAMS uninstall-libLIBRARIES dfrmstr_app: dfrmstr.c #eof # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: |
From: Dominique B. <ber...@us...> - 2010-12-23 17:58:19
|
Update of /cvsroot/windom/extensions/dfrm/docs In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv17461/docs Added Files: Makefile.in Log Message: adding autoconf/automake stuff (pass 2) --- NEW FILE: Makefile.in --- # Makefile.in generated by automake 1.10.2 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = docs DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_CLEAN_FILES = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ html-recursive info-recursive install-data-recursive \ install-dvi-recursive install-exec-recursive \ install-html-recursive install-info-recursive \ install-pdf-recursive install-ps-recursive install-recursive \ installcheck-recursive installdirs-recursive pdf-recursive \ ps-recursive uninstall-recursive am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; am__installdirs = "$(DESTDIR)$(docdir)" nobase_docDATA_INSTALL = $(install_sh_DATA) DATA = $(nobase_doc_DATA) RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = demo tutorial nobase_doc_DATA = \ demo/common.mak demo/gcc281.mak demo/icons.rsc demo/Makefile.st \ demo/demo.c demo/icons.h demo/img.c demo/motif2.iff demo/dom.gif \ demo/icons.hrd demo/img.h demo/pc.mak \ \ tutorial/index.html tutorial/Makefile.gcc tutorial/Makefile.pc \ tutorial/tut_1.html tutorial/tut_1-1.gif tutorial/tut_1-2.gif \ tutorial/tut_1-3.gif tutorial/tut_1-4.gif tutorial/tut_1.c \ tutorial/tut_2.c tutorial/tut_2.html tutorial/tut_3.html \ tutorial/toolbar.c all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu docs/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu docs/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh install-nobase_docDATA: $(nobase_doc_DATA) @$(NORMAL_INSTALL) test -z "$(docdir)" || $(MKDIR_P) "$(DESTDIR)$(docdir)" @$(am__vpath_adj_setup) \ list='$(nobase_doc_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ $(am__vpath_adj) \ echo " $(nobase_docDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(docdir)/$$f'"; \ $(nobase_docDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(docdir)/$$f"; \ done uninstall-nobase_docDATA: @$(NORMAL_UNINSTALL) @$(am__vpath_adj_setup) \ list='$(nobase_doc_DATA)'; for p in $$list; do \ $(am__vpath_adj) \ echo " rm -f '$(DESTDIR)$(docdir)/$$f'"; \ rm -f "$(DESTDIR)$(docdir)/$$f"; \ done # This directory's subdirectories are mostly independent; you can cd # into them and run `make' without going through this Makefile. # To change the values of `make' variables: instead of editing Makefiles, # (1) if the variable is set in `config.status', edit `config.status' # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): @failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" $(RECURSIVE_CLEAN_TARGETS): @failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ rev=''; for subdir in $$list; do \ if test "$$subdir" = "."; then :; else \ rev="$$subdir $$rev"; \ fi; \ done; \ rev="$$rev ."; \ target=`echo $@ | sed s/-recursive//`; \ for subdir in $$rev; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ done ctags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$tags $$unique; \ fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && cd $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) $$here distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ else \ test -f $(distdir)/$$file \ || cp -p $$d/$$file $(distdir)/$$file \ || exit 1; \ fi; \ done list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ distdir=`$(am__cd) $(distdir) && pwd`; \ top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ (cd $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$top_distdir" \ distdir="$$distdir/$$subdir" \ am__remove_distdir=: \ am__skip_length_check=: \ distdir) \ || exit 1; \ fi; \ done check-am: all-am check: check-recursive all-am: Makefile $(DATA) installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(docdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive info: info-recursive info-am: install-data-am: install-nobase_docDATA install-dvi: install-dvi-recursive install-exec-am: install-html: install-html-recursive install-info: install-info-recursive install-man: install-pdf: install-pdf-recursive install-ps: install-ps-recursive installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: uninstall-nobase_docDATA .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \ install-strip .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ all all-am check check-am clean clean-generic ctags \ ctags-recursive distclean distclean-generic distclean-tags \ distdir dvi dvi-am html html-am info info-am install \ install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-nobase_docDATA install-pdf install-pdf-am install-ps \ install-ps-am install-strip installcheck installcheck-am \ installdirs installdirs-am maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ pdf-am ps ps-am tags tags-recursive uninstall uninstall-am \ uninstall-nobase_docDATA # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: |
From: Dominique B. <ber...@us...> - 2010-12-23 17:58:19
|
Update of /cvsroot/windom/extensions/dfrm/include In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv17461/include Added Files: Makefile.in Log Message: adding autoconf/automake stuff (pass 2) --- NEW FILE: Makefile.in --- # Makefile.in generated by automake 1.10.2 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # DFRM: Dynamic FoRMular # Copyright (c) 1997-2007 Dominique Bereziat # Status : LGPL # $Id: Makefile.in,v 1.1 2010/12/23 17:58:11 bereziat Exp $ # SUBDIRS = windom VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = include DIST_COMMON = $(nobase_include_HEADERS) $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_CLEAN_FILES = SOURCES = DIST_SOURCES = am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; am__installdirs = "$(DESTDIR)$(includedir)" nobase_includeHEADERS_INSTALL = $(install_sh_DATA) HEADERS = $(nobase_include_HEADERS) ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ nobase_include_HEADERS = windom/dfrm.h windom/mt_dfrm.h all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu include/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu include/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh install-nobase_includeHEADERS: $(nobase_include_HEADERS) @$(NORMAL_INSTALL) test -z "$(includedir)" || $(MKDIR_P) "$(DESTDIR)$(includedir)" @$(am__vpath_adj_setup) \ list='$(nobase_include_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ $(am__vpath_adj) \ echo " $(nobase_includeHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(includedir)/$$f'"; \ $(nobase_includeHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(includedir)/$$f"; \ done uninstall-nobase_includeHEADERS: @$(NORMAL_UNINSTALL) @$(am__vpath_adj_setup) \ list='$(nobase_include_HEADERS)'; for p in $$list; do \ $(am__vpath_adj) \ echo " rm -f '$(DESTDIR)$(includedir)/$$f'"; \ rm -f "$(DESTDIR)$(includedir)/$$f"; \ done ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$tags $$unique; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && cd $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) $$here distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ else \ test -f $(distdir)/$$file \ || cp -p $$d/$$file $(distdir)/$$file \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(HEADERS) installdirs: for dir in "$(DESTDIR)$(includedir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-am dvi-am: html: html-am info: info-am info-am: install-data-am: install-nobase_includeHEADERS install-dvi: install-dvi-am install-exec-am: install-html: install-html-am install-info: install-info-am install-man: install-pdf: install-pdf-am install-ps: install-ps-am installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-nobase_includeHEADERS .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ ctags distclean distclean-generic distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ install-data install-data-am install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-man \ install-nobase_includeHEADERS install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ pdf-am ps ps-am tags uninstall uninstall-am \ uninstall-nobase_includeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: |
From: Dominique B. <ber...@us...> - 2010-12-23 17:58:19
|
Update of /cvsroot/windom/extensions/dfrm/docs/demo In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv17461/docs/demo Added Files: Makefile.in Log Message: adding autoconf/automake stuff (pass 2) --- NEW FILE: Makefile.in --- # Makefile.in generated by automake 1.10.2 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = docs/demo DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_CLEAN_FILES = SOURCES = DIST_SOURCES = DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ EXTRA_DIST = icons.rsc icons.hrd icons.h demo.c img.c img.h \ dom.gif motif2.iff common.mak Makefile.st pc.mak gcc281.mak all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu docs/demo/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu docs/demo/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh tags: TAGS TAGS: ctags: CTAGS CTAGS: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ else \ test -f $(distdir)/$$file \ || cp -p $$d/$$file $(distdir)/$$file \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-exec-am: install-html: install-html-am install-info: install-info-am install-man: install-pdf: install-pdf-am install-ps: install-ps-am installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic distclean \ distclean-generic distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic pdf pdf-am ps ps-am uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: |
From: Dominique B. <ber...@us...> - 2010-12-23 17:50:16
|
Update of /cvsroot/windom/extensions/dfrm/docs/tutorial In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv14475/docs/tutorial Modified Files: index.html Added Files: Makefile.am Makefile.gcc Makefile.pc lang.c lang.en lang.fr lang.h lang.mak toolbar.c tut_1-1.gif tut_1-2.gif tut_1-3.gif tut_1-4.gif tut_1.c tut_1.html tut_2.c tut_2.html tut_3.html Log Message: adding autoconf and automake stuff (first pass) move examples as demo in docs some restructuraction in tutorial and adding two tutorials --- NEW FILE: lang.en --- # Le menu M0_DESK DFRM lang M0_INFO About ... ^I M0_FILE Files M0_QUIT Quit ^Q M0_LANG Language M0_FR Franais M0_EN English # Dial 0 D0_LABEL0 Demonstration of D0_LABEL1 multi-language support D0_OK OK D0_TITLE Info --- NEW FILE: tut_2.c --- #include <windom/dfrm.h> void ok_clicked( WINDOW *win, int index, int mode, int *data) { ObjcChange( mode, win, index, ~SELECTED, TRUE); ApplWrite( _AESapid, WM_CLOSED, win->handle, 0, 0, 0, 0); FormAlert(1,"[1][The user selects button %d][OK]", *data); } void cancel_clicked( WINDOW *win, int index, int mode) { ObjcChange( mode, win, index, ~SELECTED, TRUE); ApplWrite( _AESapid, WM_CLOSED, win->handle, 0, 0, 0, 0); } int main() { void *frm; int pind, cind; int rbut = 1; ApplInit(); frm = dfrm_create( 10, TYPE_NORMAL); pind = dfrm_new_box( frm, 0, 0, 0, 0); cind = dfrm_new_button( frm, TYPE_RBUT, "tea"); dfrm_add( frm, pind, cind, 10, 10, DIR_HORI); /* The value 1 will be set in rbut when this button will be selected */ dfrm_attach( frm, cind, BIND_VAR, &rbut, 1); /*dfrm_setstate( frm, cind, SELECTED, TRUE);*/ cind = dfrm_new_button( frm, TYPE_RBUT, "coffee"); dfrm_add( frm, pind, cind, 10, 10, DIR_HORI); dfrm_attach( frm, cind, BIND_VAR, &rbut, 2); cind = dfrm_new_button( frm, TYPE_RBUT, "beer"); dfrm_add( frm, pind, cind, 10, 10, DIR_HORI); dfrm_attach( frm, cind, BIND_VAR, &rbut, 3); dfrm_add( frm, ROOT, pind, 10, 20, DIR_VERT); pind = dfrm_new_box( frm, 0, 0, 0, 0); cind = dfrm_new_button( frm, TYPE_DBUT, "OK"); dfrm_add( frm, pind, cind, 10, 10, DIR_HORI); dfrm_attach( frm, cind, BIND_FUNC, ok_clicked, &rbut); cind = dfrm_new_button( frm, TYPE_EBUT, "Cancel"); dfrm_add( frm, pind, cind, 10, 10, DIR_HORI); dfrm_attach( frm, cind, BIND_FUNC, cancel_clicked); dfrm_add( frm, ROOT, pind, 10, 20, DIR_VERT); dfrm_repack( frm); dfrm_form( frm, WAT_FORM, "Favorite drink?", TRUE); for(;;) EvntWindom(MU_MESAG+MU_KEYBD); return 0; } --- NEW FILE: tut_2.html --- <html> <head> <title>DFRM tutorial: playing with radio buttons</title> </head> <body> <h5 align=right>DFRM tutorial</h5> <h1 align=center>Example 2: playing with radio buttons</h1> <H2 align=center>by Dominique Béréziat</H2> <p> Now, we know how to design a simple dialog box containing several buttons. We are going to create one formular containg three radio buttons, i.e. the user can only choose one button among the three one. In addition, we will add two buttons: a first one to validate the user choice and a second one to cancel. The result will be stored a in variable. </p> <table width="100%" border="1" > <tr> <td width="50%"> <pre> #include <windom/dfrm.h> int main() { void *frm; int pind, cind; ApplInit(); frm = dfrm_create( 10, TYPE_NORMAL); pind = dfrm_new_box( frm, 0, 0, 0, 0); cind = dfrm_new_button( frm, TYPE_RBUT, "tea"); dfrm_add( frm, pind, cind, 10, 10, DIR_HORI); <font color=red>dfrm_setstate( frm, cind, SELECTED, TRUE);</font> cind = dfrm_new_button( frm, TYPE_RBUT, "coffee"); dfrm_add( frm, pind, cind, 10, 10, DIR_HORI); cind = dfrm_new_button( frm, TYPE_RBUT, "beer"); dfrm_add( frm, pind, cind, 10, 10, DIR_HORI); dfrm_add( frm, ROOT, pind, 10, 20, DIR_VERT); dfrm_repack( frm); dfrm_form( frm, WAT_FORM, "Favorite drink?", TRUE); for(;;) EvntWindom(MU_MESAG+MU_KEYBD); return 0; } </pre> </td> <td width="50%" valign="top"> <h3>First step</h3> <p> Similarly to the first example, we create 3 buttons embedded in an invisible box to obtain a correct alignment. We choose now <tt>TYPE_RBUT</tt> which stands for a radio button.</p> <p> At this time, we decide the first button should be selected (because it could be a default choice). For that, we use the function <tt>dfrm_setstate</tt> to manipulate object states. </td> </tr> <tr> <td width="50%"> <pre> #include <windom/dfrm.h> int main() { void *frm; int pind, cind; ApplInit(); frm = dfrm_create( 10, TYPE_NORMAL); pind = dfrm_new_box( frm, 0, 0, 0, 0); cind = dfrm_new_button( frm, TYPE_RBUT, "tea"); dfrm_add( frm, pind, cind, 10, 10, DIR_HORI); dfrm_setstate( frm, cind, SELECTED, TRUE); cind = dfrm_new_button( frm, TYPE_RBUT, "coffee"); dfrm_add( frm, pind, cind, 10, 10, DIR_HORI); cind = dfrm_new_button( frm, TYPE_RBUT, "beer"); dfrm_add( frm, pind, cind, 10, 10, DIR_HORI); dfrm_add( frm, ROOT, pind, 10, 20, DIR_VERT); <font color=red>pind = dfrm_new_box( frm, 0, 0, 0, 0); cind = dfrm_new_button( frm, TYPE_DBUT, "OK"); dfrm_add( frm, pind, cind, 10, 10, DIR_HORI); cind = dfrm_new_button( frm, TYPE_EBUT, "Cancel"); dfrm_add( frm, pind, cind, 10, 10, DIR_HORI); dfrm_add( frm, ROOT, pind, 10, 20, DIR_VERT);</font> dfrm_repack( frm); dfrm_form( frm, WAT_FORM, "Favorite drink?", TRUE); for(;;) EvntWindom(MU_MESAG+MU_KEYBD); return 0; } </pre> </td> <td width="50%" valign="top"> <h3>Second step</h3> <p> Next, let us add two buttons, "OK" and "Cancel", to validate of to cancel the User's choice. The first one will be an "default" (<tt>TYPE_DBUT</tt>) button, i.e. an "exit" button which can be selected using the RETURN key, and the second one an "exit" (<tt>TYPE_EBUT</tt>) button, i.e. a button which can execute an user function when it is selected. Off course, these two buttons must be embedded in a box in order to obtain to correct alignment with the radio buttons. </p> </td> </tr> <tr> <td width="50%"> <pre> #include <windom/dfrm.h> <font color="red">void ok_clicked( WINDOW *win, int index, int mode) { ObjcChange( mode, win, index, ~SELECTED, TRUE); ApplWrite( _AESapid, WM_CLOSED, win->handle, 0, 0, 0, 0); }</font> int main() { void *frm; int pind, cind; ApplInit(); frm = dfrm_create( 10, TYPE_NORMAL); pind = dfrm_new_box( frm, 0, 0, 0, 0); cind = dfrm_new_button( frm, TYPE_RBUT, "tea"); dfrm_add( frm, pind, cind, 10, 10, DIR_HORI); dfrm_setstate( frm, cind, SELECTED, TRUE); cind = dfrm_new_button( frm, TYPE_RBUT, "coffee"); dfrm_add( frm, pind, cind, 10, 10, DIR_HORI); cind = dfrm_new_button( frm, TYPE_RBUT, "beer"); dfrm_add( frm, pind, cind, 10, 10, DIR_HORI); dfrm_add( frm, ROOT, pind, 10, 20, DIR_VERT); pind = dfrm_new_box( frm, 0, 0, 0, 0); cind = dfrm_new_button( frm, TYPE_DBUT, "OK"); dfrm_add( frm, pind, cind, 10, 10, DIR_HORI); <font color=red>dfrm_attach( frm, cind, BIND_FUNC, ok_clicked);</font> cind = dfrm_new_button( frm, TYPE_EBUT, "Cancel"); dfrm_add( frm, pind, cind, 10, 10, DIR_HORI); <font color=red>dfrm_attach( frm, cind, BIND_FUNC, ok_clicked);</font> dfrm_add( frm, ROOT, pind, 10, 20, DIR_VERT); dfrm_repack( frm); dfrm_form( frm, WAT_FORM, "Favorite drink?", TRUE); for(;;) EvntWindom(MU_MESAG+MU_KEYBD); return 0; } </pre> </td> <td width="50%" valign="top"> <h3>Third step</h3> <p> The dialog box is over, we need now to interpret the user events. If you click on Ok or Cancel button, you will see the buttons staying selected. The first thing to do is to catch the event of selecting these button. To this end, we need to define a user function <i>binded</i> to these buttons. The binding between the function and the object is performed using <tt>dfrm_attach()</tt>.</p> <p>The user function, here <tt>ok_clicked</tt>, does basically two things: first the object state is set to non-selected, second a GEM signal is emitted requiring the closure of the window (and next the exit of the program because it is the standard behavior of WinDom to terminate when the last window is closed). </p> </td> </tr> <tr> <td width="50%"> <pre> #include <windom/dfrm.h> void ok_clicked( WINDOW *win, int index, int mode<font color=red>, int *data</font>) { ObjcChange( mode, win, index, ~SELECTED, TRUE); ApplWrite( _AESapid, WM_CLOSED, win->handle, 0, 0, 0, 0); <font color=red>FormAlert(1,"[1][The user selects button %d][OK]", *data);</font> } <font color=red> void cancel_clicked( WINDOW *win, int index, int mode) { ObjcChange( mode, win, index, ~SELECTED, TRUE); ApplWrite( _AESapid, WM_CLOSED, win->handle, 0, 0, 0, 0); }</font> int main() { void *frm; int pind, cind; <font color=red>int rbut = 1;</font> ApplInit(); frm = dfrm_create( 10, TYPE_NORMAL); pind = dfrm_new_box( frm, 0, 0, 0, 0); cind = dfrm_new_button( frm, TYPE_RBUT, "tea"); dfrm_add( frm, pind, cind, 10, 10, DIR_HORI); <font color=red>/* The value 1 will be set in rbut when this button will be selected */ dfrm_attach( frm, cind, BIND_VAR, &rbut, 1);</font> <font color=blue>/*dfrm_setstate( frm, cind, SELECTED, TRUE);*/</font> cind = dfrm_new_button( frm, TYPE_RBUT, "coffee"); dfrm_add( frm, pind, cind, 10, 10, DIR_HORI); <font color=red>dfrm_attach( frm, cind, BIND_VAR, &rbut, 2);</font> cind = dfrm_new_button( frm, TYPE_RBUT, "beer"); dfrm_add( frm, pind, cind, 10, 10, DIR_HORI); <font color=red>dfrm_attach( frm, cind, BIND_VAR, &rbut, 3);</font> dfrm_add( frm, ROOT, pind, 10, 20, DIR_VERT); pind = dfrm_new_box( frm, 0, 0, 0, 0); cind = dfrm_new_button( frm, TYPE_DBUT, "OK"); dfrm_add( frm, pind, cind, 10, 10, DIR_HORI); dfrm_attach( frm, cind, BIND_FUNC, ok_clicked, <font color=red>&rbut</font>); cind = dfrm_new_button( frm, TYPE_EBUT, "Cancel"); dfrm_add( frm, pind, cind, 10, 10, DIR_HORI); dfrm_attach( frm, cind, BIND_FUNC, <font color=red>cancel_clicked</font>); dfrm_add( frm, ROOT, pind, 10, 20, DIR_VERT); dfrm_repack( frm); dfrm_form( frm, WAT_FORM, "Favorite drink?", TRUE); for(;;) EvntWindom(MU_MESAG+MU_KEYBD); return 0; } </pre> </td> <td width="50%" valign="top"> <h3>Last step</h3> <p> We also want to know which radio button the user has chosen. For that, to bind the three radio button to a unique variable. When the user selects a radio button, the specific value, identifying the button is put to the variable. The binding is perform again with the <tt>dfrm_attach</tt> function. When the interaction with is user finish, one can read in the variable the final user's choice. </p> <p> The call to <tt>dfrm_setstate()</tt> must be removed because WinDom will select the radio button with respect to the value read in the binded variable. Here, the first radio button will be selected because <tt>rbut</tt> is initialized to 1 and 1 is the value which is affected to <tt>rbut</tt> if the first button is selected. </p> <p> User function <tt>ok_clicked()</tt> is modified to get the final value chosen: the variable <tt>rbut</tt> may be given to the user function. A <tt>cancel_clicked()</tt> function is introduced which is basically the previous version of <tt>ok_clicked()</tt>. </p> </td> </tr> </table> <address> <a href="mailto:Dominique ^.^ Bereziat _@_ inria ^.^fr (a cause des spams)">Dominique Béréziat</a> </address> </body> </html> --- NEW FILE: toolbar.c --- #include <windom/dfrm.h> void draw( WINDOW *win, short msg[], int *type) { INT16 x, y, w, h, pxy[4]; WindGet( win, WF_WORKXYWH, &x, &y, &w, &h); vsf_color( win->graf->handle, BLACK); switch( *type) { case 1: v_circle( win->graf->handle, x+w/2, y+h/2, MIN(w,h)/2); break; case 2: v_ellipse( win->graf->handle, x+w/2, y+h/2, w/2, h/2); break; case 3: pxy[0]=x+w/3; pxy[1]=y+h/3; pxy[2]=x+2*w/3; pxy[3]=y+2*h/3; v_bar( win->graf->handle, pxy); break; } } void redraw( WINDOW *win) { snd_rdw(win); } void main( void) { WINDOW *win; int type = 3; void *dial; int child; ApplInit(); win = WindCreate( WAT_NOINFO, app.x, app.y, app.w, app.h); EvntDataAdd( win, WM_REDRAW, draw, &type, EV_BOT); WindOpen( win, -1, -1, app.w/2, app.h/2); dial = dfrm_create( 10, TYPE_NORMAL); dfrm_seth( dial, ROOT, -6); dfrm_setw( dial, ROOT, app.w); child = dfrm_new_button(dial, TYPE_XRBUT, "[circle"); dfrm_add( dial, ROOT, child, -4, -2, DIR_HORI); dfrm_attach( dial, child, BIND_VAR, &type, 1); dfrm_setflags( dial, child, TOUCHEXIT, TRUE); dfrm_attach( dial, child, BIND_FUNC, snd_rdw); child = dfrm_new_button(dial, TYPE_XRBUT, "[ellipse"); dfrm_add( dial, ROOT, child, -1, -2, DIR_HORI); dfrm_attach( dial, child, BIND_VAR, &type, 2); dfrm_setflags( dial, child, TOUCHEXIT, TRUE); dfrm_attach( dial, child, BIND_FUNC, snd_rdw); child = dfrm_new_button(dial, TYPE_XRBUT, "[box"); dfrm_add( dial, ROOT, child, -1, -2, DIR_HORI); dfrm_attach( dial, child, BIND_VAR, &type, 3); dfrm_setflags( dial, child, TOUCHEXIT, TRUE); dfrm_attach( dial, child, BIND_FUNC, snd_rdw); dfrm_repack(dial); dfrm_toolbar( win, dial); while( wglb.first) EvntWindom(MU_MESAG); ApplExit(); } --- NEW FILE: Makefile.am --- EXTRA_DIST = index.html Makefile.gcc Makefile.pc tut_1.html \ tut_1-1.gif tut_1-2.gif tut_1-3.gif tut_1-4.gif tut_1.c \ tut_2.html tut_2.c tut_3.html \ lang.c lang.h lang.fr lang.en lang.mak \ toolbar.c # a nettoyer --- NEW FILE: lang.h --- /* * Generated by dfrmstr on Sun Dec 11 18:34:26 2005 */ #define M0_DESK 0 #define M0_INFO 1 #define M0_FILE 2 #define M0_QUIT 3 #define M0_LANG 4 #define M0_FR 5 #define M0_EN 6 #define D0_LABEL0 7 #define D0_LABEL1 8 #define D0_OK 9 #define D0_TITLE 10 Index: index.html =================================================================== RCS file: /cvsroot/windom/extensions/dfrm/docs/tutorial/index.html,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- index.html 10 Jul 2004 12:29:53 -0000 1.1 +++ index.html 23 Dec 2010 17:50:07 -0000 1.2 @@ -6,14 +6,23 @@ <h1 align=center>DFRM tutorial</h1> <h2 align=center>by Dominique Béréziat</h2> +You can find in the directory <tt>docs/tutorial</tt> in the DFRM +archive (or in <tt>/usr/share/doc/dfrm/tutorial</tt>) a series of small +programs illustrating GEM programing using DFRM/WinDom. Use this +<a href="Makefile.gcc">Makefile</a> to compile them with <tt>gcc</tt> +in a MiNT text-terminal environnement. + <ul> - <li><a href="tut1/tut_1.html">Example 1</a>: create a simple alert box. - <li>Example 2: manipulation of macro object is easier than an ressource editor. - <li>Example 3: how to handle multi-language in your application. + <li><a href="tut_1.html">Example 1</a>: create a simple alert box. + <li><a href="tut_2.html">Example 2</a>: a simple example with radio buttons. + <li><a href="tut_3.html">Example 3</a>: an example to handle several languages + in a GEM application without resource file. + <li>Example 4: manipulation of macro object is easier than an ressource editor. </ul> <address> -<a href="mailto:ANT...@fr...">Dominique Bereziat</a> +<a href="mailto:ANT...@fr...">Dominique Béréziat</a><br> +last update: dec 2010 </address> </body> </html> --- NEW FILE: Makefile.gcc --- # Generic Makefile for Gcc CC = gcc CPPFLAGS = CFLAGS = LDFLAGS = LDLIBS = -ldfrm -lwindom -lldg -lgem all: tut_1.app tut_2.app toolbar.app clean: rm -f tut_1.app toolbar.app .c.app:; $(CC) $(CPPFLAGS) $(CFLAGS) $< -o $@ $(LDFLAGS) $(LDLIBS) .SUFFIXES: .SUFFIXES: .c .app .PHONY: all clean --- NEW FILE: lang.c --- /* Test multilanguage support */ #include <windom/dfrm.h> #include <stdlib.h> #include "lang.h" void *menu; char **strs; /* All strings of the program */ void __CDECL MenuInfo( WINDOW *win, int item, int title) { void *dial; int ind; dial = dfrm_create( 10, TYPE_NORMAL); ind = dfrm_new_label( dial, TYPE_LABEL, strs[D0_LABEL0] ); dfrm_add( dial, ROOT, ind, -1, -2, DIR_VERT); dfrm_align( dial, ind, DIR_HORI, ALIGN_CENTER); ind = dfrm_new_label( dial, TYPE_LABEL, strs[D0_LABEL1] ); dfrm_add( dial, ROOT, ind, -1, 0, DIR_VERT); dfrm_align( dial, ind, DIR_HORI, ALIGN_CENTER); ind = dfrm_new_button( dial, TYPE_DBUT, strs[D0_OK] ); dfrm_add( dial, ROOT, ind, -1, -2, DIR_VERT); dfrm_align( dial, ind, DIR_HORI, ALIGN_CENTER); dfrm_repack( dial); dfrm_modal( dial, strs[D0_TITLE]); FormWindDo( MU_MESAG); FormWindEnd(); MenuTnormal( NULL, title, 1); } void __CDECL MenuQuit( WINDOW *win, int item, int title) { ApplWrite( _AESapid, AP_TERM, 0, 0, 0, 0, 0); MenuTnormal( win, title, 1); } void __CDECL MenuEnglish( WINDOW *win, int item, int title) { void BuildMenu(void); char **_strs = dfrm_load_str( "lang.en"); if( _strs) { dfrm_free_str( strs); menu_bar( dfrm_tree( menu), 0); dfrm_free_str( strs); strs = _strs; BuildMenu(); } else { FormAlert ( 1, "[1][File \"lang.en\" not found][END]"); MenuTnormal( win, title, 1); } } void __CDECL MenuFrench( WINDOW *dummy, int item, int type, int title) { void BuildMenu(void); char **_strs = dfrm_load_str( "lang.fr"); if( _strs) { dfrm_free_str( strs); menu_bar( dfrm_tree( menu), 0); dfrm_free_str( strs); strs = _strs; BuildMenu(); } else { FormAlert ( 1, "[1][File \"lang.fr\" not found][END]"); MenuTnormal( NULL, title, 1); } } void BuildMenu(void) { int ind, pind; menu = dfrm_create( 30, TYPE_MENU); /* Create a minimal desktop menu structure */ ind = dfrm_new_dmenu( menu, strs[M0_DESK], strs[M0_INFO]); dfrm_attach( menu, ind, BIND_FUNC, MenuInfo); /* Other menu items */ pind = dfrm_add_menu( menu, strs[M0_FILE]); ind = dfrm_new_label( menu, TYPE_MITEM, strs[M0_QUIT]); dfrm_add( menu, pind, ind, 0, 0, DIR_VERT); dfrm_attach( menu, ind, BIND_FUNC, MenuQuit); /* Other menu items */ pind = dfrm_add_menu( menu, strs[M0_LANG]); ind = dfrm_new_label( menu, TYPE_MITEM, strs[M0_FR]); dfrm_align( menu, ind, DIR_HORI, ALIGN_JUSTIFY); dfrm_add( menu, pind, ind, 0, 0, DIR_VERT); dfrm_attach( menu, ind, BIND_FUNC, MenuFrench); ind = dfrm_new_label( menu, TYPE_MITEM, strs[M0_EN]); dfrm_align( menu, ind, DIR_HORI, ALIGN_JUSTIFY); dfrm_add( menu, pind, ind, 0, 0, DIR_VERT); dfrm_attach( menu, ind, BIND_FUNC, MenuEnglish); dfrm_repack( menu); /* now, install the menu */ dfrm_menu( NULL, menu); } void __CDECL ApTerm( WINDOW *dummy, short msg[]) { UNUSED(dummy); dfrm_free_str( strs); ApplExit(); exit(0); } void main( void) { ApplInit(); strs = dfrm_load_str( "lang.fr"); if( !strs) { FormAlert ( 1, "[1][File \"lang.fr\" not found][END]"); ApplExit(); return; } BuildMenu(); EvntAttach( NULL, AP_TERM, ApTerm); for( ;;) EvntWindom( MU_MESAG); } --- NEW FILE: tut_3.html --- <html> <head> <title>DFRM tutorial: several languages in a GEM application (without resource file)</title> </head> <body> <h5 align=right>DFRM tutorial</h5> <h1 align=center>Example 3: several languages in a GEM application (without resource file)</h1> <H2 align=center>by Dominique Béréziat</H2> <p> The file <a href="lang.c"><tt>lang.c</tt></a> shows how to have several languages in a GEM application. The technique is very simple: an ASCII file contains strings, it is the language file. Each line begins with an unique alphanumerical identificator followed by the string. From this file, the <tt>dfrmstr</tt> utility builds a C-header file containing the definition of the identificators. As DFRM builds dynamically dialog box, it is possible to read one or several language file, and get from this file the required strings using the unique identificator provided by the C-header generated by <tt>dfrmstr</tt>. </p> <p> In this example, the makefile <a href="lang.mak"><tt>lang.mak</tt></a> builds the <a href="lang.h"><tt>lang.h</tt></a> file from the english language file <a href="lang.en"><tt>lang.en</tt></a> using <tt>dfrmstr</tt>. <a href="lang.fr"><tt>lang.fr</tt></a> is the french version of <tt>lang.en</tt>. The program <tt>lang.c</tt> includes <tt>lang.h</tt>, loads the good language file, and stores all strings in a global array <tt>strs</tt> which can be accessed easily using indices defined in <tt>lang.h</tt>. <address> <a href="mailto:Dominique ^.^ Bereziat _@_ inria ^.^fr (a cause des spams)">Dominique Béréziat</a> </address> </body> </html> --- NEW FILE: lang.mak --- # Example of multi-language support # $Id: lang.mak,v 1.1 2010/12/23 17:50:07 bereziat Exp $ ifeq ($(CROSS),yes) CROSSPREFIX = m68k-atari-mint CC = $(CROSSPREFIX)-gcc AR = $(CROSSPREFIX)-ar PREFIX = /usr/$(CROSSPREFIX) else CC = gcc AR = ar PREFIX = /usr endif CFLAGS = -I../include LDFLAGS = LDLIBS = ../lib/gcc295/libdfrm.a -lwindom -lldg -lgem # rule to link a GEM application %.app: %.o; $(CC) $^ -o $@ $(LDFLAGS) $(LDLIBS) # rule to generate string symbol header %.h: %.en; dfrmstr $< $@ all: lang.app lang.o: lang.h --- NEW FILE: tut_1.c --- #include <stdlib.h> #include <windom/dfrm.h> #define WITH_TEXT 1 #define WITH_ALIGN 1 #define ADD_BUTTON 1 #define BIND_BUTTON 1 void ApTerm(void) { while( wglb.first) { ApplWrite( _AESapid, WM_CLOSED, wglb.first->handle, 0, 0, 0, 0); EvntWindom( MU_MESAG); } ApplExit(); exit( 0); } void wclose( WINDOW *win, int index) { ObjcChange( OC_FORM, win, index, NORMAL, TRUE); ApplWrite( _AESapid, AP_TERM, 0, 0, 0, 0, 0); } void winfo( WINDOW *win, int index) { FormAlert( 1, "[1][Compiling using|WinDom v%x.%02x|DFRM v%x.%02x][OK]", WinDom.patchlevel >> 8 , WinDom.patchlevel & 0x00FF, __DFRM_MAJOR__,__DFRM_MINOR__); ObjcChange( OC_FORM, win, index, NORMAL, TRUE); } int main( void) { WINDOW *win; void* dial; int child, parent; ApplInit(); dial = dfrm_create( 10, TYPE_NORMAL); #if WITH_TEXT child = dfrm_new_label( dial, TYPE_LABEL, "This alert box"); dfrm_add( dial, ROOT, child, -4, -1, DIR_VERT); #if WITH_ALIGN dfrm_align( dial, child, DIR_HORI, ALIGN_CENTER); #endif child = dfrm_new_label( dial, TYPE_LABEL, "is designed using DFRM"); dfrm_add( dial, ROOT, child, -4, 0, DIR_VERT); #if WITH_ALIGN dfrm_align( dial, child, DIR_HORI, ALIGN_CENTER); #endif #else dfrm_setw( dial, ROOT, 100); dfrm_seth( dial, ROOT, 50); #endif #if ADD_BUTTON parent = dfrm_new_box( dial, 0, 0, 0, 0); child = dfrm_new_button( dial, TYPE_XDBUT, "Exit"); dfrm_add( dial, parent, child, 0, -1, DIR_HORI); #if BIND_BUTTON dfrm_attach( dial, child, BIND_FUNC, wclose); #endif child = dfrm_new_button( dial, TYPE_XEBUT, "[Info"); dfrm_add( dial, parent, child, -4, -1, DIR_HORI); #if BIND_BUTTON dfrm_attach( dial, child, BIND_FUNC, winfo); #endif dfrm_add( dial, ROOT, parent, -4, 0, DIR_VERT); #if WITH_ALIGN dfrm_align( dial, parent, DIR_HORI, ALIGN_CENTER); #endif #endif #if WITH_ALIGN dfrm_repack( dial); #endif win = dfrm_form( dial, WAT_FORM, "Alert Box", TRUE); EvntAttach( NULL, AP_TERM, ApTerm); for( ;;) EvntWindom( MU_MESAG); return 0; } --- NEW FILE: tut_1.html --- <HTML> <HEAD> <TITLE>TDFRM tutorial: a simple alert box</TITLE> <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"> </HEAD> <BODY BGCOLOR="#FFFFFF" TEXT="#000000"> <h5 align=right>DFRM tutorial</h5> <H1 align=center>Example 1: a simple alert box.</H1> <H2 align=center>by Dominique Béréziat</H2> <P>The purpose of this example is to create a alert box : a box containing a text object and two buttons "Ok" and "Cancel".</P> <TABLE WIDTH="100%" BORDER="1" HEIGHT="233"> <TR> <TD WIDTH="52%"> <PRE> #include <stdlib.h> #include <windom/dfrm.h> void ApTerm( void); void WinTerm( WINDOW *win, void *data); void main( void) { WINDOW *win; void* dial; ApplInit(); dial = dfrm_create( 10, TYPE_NORMAL); dfrm_setw( dial, ROOT, 100); dfrm_seth( dial, ROOT, 50); win = dfrm_form( dial,WAT_FORM,"Alert Box", TRUE); EvntAttach( NULL, AP_TERM, ApTerm); for( ;;) EvntWindom( MU_MESAG); } void ApTerm(void) { while( wglb.first) { ApplWrite( app.id, WM_DESTROY, wglb.first->handle, 0, 0, 0, 0); EvntWindom( MU_MESAG); } ApplExit(); exit( 0); } </PRE> </TD> <TD VALIGN="TOP" WIDTH="48%"> <h3>First Step</h3> <p> First of all, you have to initialise WinDom. Next we declare a local variable to build our dialog box : a dialog pointer. </p> <P>The second thing to do is to create a master dialog structure. The function dfrm_create() creates : </P> <UL> <LI> A dynamic structure which will contain objects.</LI> <LI>Using TYPE_NORMAL mode, we create a root object in the which is box with relief borders. Second parameter stand for the maximal number of object in the form.</LI> </UL> <P> The third thing is to place the dialog form into a window using dfrm_open(). This function is a custom call of the WinDom function FormCreate(). </p> <p> Rest of the code address some WinDom aspect to handle GEM event : the callback function ApTerm() catches AP_TERM message (application terminaison), and we handle GEM event in an infinite loop. </p> <P> <center><img src="tut_1-1.gif"></center> </P> </TD> </TR> <TR> <TD WIDTH="52%"> <PRE> #include <stdlib.h> #include <windom/dfrm.h> void ApTerm( void); void WinTerm( WINDOW *win, void *data); void main( void) { WINDOW *win; void* dial; <font color=red>int child;</font> ApplInit(); dial = dfrm_create( 10, TYPE_NORMAL); <font color=green>/* Useless code dfrm_setw( dial, ROOT, 100); dfrm_seth( dial, ROOT, 50); */</font> <font color=red> child = dfrm_new_label( dial, TYPE_LABEL, "This alert box"); dfrm_add( dial, ROOT, child, -4, -1, DIR_VERT); child = dfrm_new_label( dial, TYPE_LABEL, "is designed using DFRM"); dfrm_add( dial, ROOT, child, -4, 0, DIR_VERT);</font> win = dfrm_form( dial,WAT_FORM,"Alert Box", TRUE); EvntAttach( NULL, AP_TERM, ApTerm); for( ;;) EvntWindom( MU_MESAG); } void ApTerm(void) { while( wglb.first) { ApplWrite( app.id, WM_DESTROY, wglb.first->handle, 0, 0, 0, 0); EvntWindom( MU_MESAG); } ApplExit(); exit( 0); } </PRE> </TD> <TD WIDTH="48%" valign=TOP> <h3>Second Step</h3> <p> In the next step, we add two labeled objects. For that purpose we have to declare a local variable, <tt>child</tt>, which hold the index of created object. </p> <p> Directive of size on the root object (<tt>dfrm_setw()</tt> and <tt>dfrm_seth()</tt>) are now useness because when we add children objects to a object, its size is recomputed in order to contain its children objects. </P> <p> DFRM functions with prefix <tt>dfrm_new_</tt> create new objects. Here we create two label objects with <tt>dfrm_new_label()</tt>. </p> <p> After object creation, we can add it in the dialog structure using <tt>dfrm_add()</tt>. So They are added as children of ROOT object, they are vertically aligned, each object are spaced using a demi-height character (-1). Objects are placed from 2 width character (-4) from the left border because objects are left-aligned by default. </p> <p> <center> <img src="tut_1-2.gif"> </center> </p> </TD> </TR> <TR> <TD WIDTH="52%"> <PRE> #include <stdlib.h> #include <windom/dfrm.h> void ApTerm( void); void WinTerm( WINDOW *win, void *data); void main( void) { WINDOW *win; void* dial; int child, <font color=red>parent;</font> ApplInit(); dial = dfrm_create( 10, TYPE_NORMAL); child = dfrm_new_label( dial, TYPE_LABEL, "This alert box"); dfrm_add( dial, ROOT, child, -4, -1, DIR_VERT); child = dfrm_new_label( dial, TYPE_LABEL, "is designed using DFRM"); dfrm_add( dial, ROOT, child, -4, 0, DIR_VERT); <font color=red>/* 1. Create an Invisible BOX */ parent = dfrm_new_box( dial, 0, 0, 0, 0); /* 2. create a button */ child = dfrm_new_button( dial, TYPE_XDBUT, "Exit"); /* 3. horizontaly aligned in inv. box */ dfrm_add( dial, parent, child, 0, -1, DIR_HORI); /* another button */ child = dfrm_new_button( dial, TYPE_XEBUT, "[Info"); dfrm_add( dial, parent, child, -4, -1, DIR_HORI); /* 4. adding invisible box in ROOT object */ dfrm_add( dial, ROOT, parent, -4, 0, DIR_VERT);</font> win = dfrm_form( dial,WAT_FORM,"Alert Box", TRUE); EvntAttach( NULL, AP_TERM, ApTerm); for( ;;) EvntWindom( MU_MESAG); } void ApTerm(void) { while( wglb.first) { ApplWrite( app.id, WM_DESTROY, wglb.first->handle, 0, 0, 0, 0); EvntWindom( MU_MESAG); } ApplExit(); exit( 0); } </PRE> </TD> <TD WIDTH="48%" VALIGN=TOP> <h3>Third Step</h3> Now, we want to add horizontaly aligned buttons above label objects. We need a second local variable containing a parent object index. To align horizontal buttons we have to : <ol> <li> create an invisible box. <li> create and align buttons. <li> add button as children of invisible box. <li> add invisible as children of ROOT object with an vertical alignment. </ol> <center> <img src="tut_1-3.gif"> </center> </TD> </TR> <TR> <TD WIDTH="52%"> <PRE> #include <stdlib.h> #include <windom/dfrm.h> void ApTerm( void); void WinTerm( WINDOW *win, void *data); <font color=red>void winfo( WINDOW *win, int index); void wclose( WINDOW *win, int index);</font> void main( void) { WINDOW *win; void* dial; int child, parent; ApplInit(); dial = dfrm_create( 10, TYPE_NORMAL); child = dfrm_new_label( dial, TYPE_LABEL, "This alert box"); dfrm_add( dial, ROOT, child, -4, -1, DIR_VERT); <font color=red>dfrm_align( dial, child, DIR_HORI, ALIGN_CENTER);</font> child = dfrm_new_label( dial, TYPE_LABEL, "is designed using DFRM"); dfrm_add( dial, ROOT, child, -4, 0, DIR_VERT); <font color=red>dfrm_align( dial, child, DIR_HORI, ALIGN_CENTER);</font> /* 1. Create an Invisible BOX */ parent = dfrm_new_box( dial, 0, 0, 0, 0); /* 2. create a button */ child = dfrm_new_button( dial, TYPE_XDBUT, "Exit"); <font color=red>dfrm_attach( dial, child, BIND_FUNC, wclose);</font> /* 3. horizontaly aligned in inv. box */ dfrm_add( dial, parent, child, 0, -1, DIR_HORI); /* another button */ child = dfrm_new_button( dial, TYPE_XEBUT, "[Info"); dfrm_add( dial, parent, child, -4, -1, DIR_HORI); <font color=red>dfrm_attach( dial, child, BIND_FUNC, winfo);</font> /* 4. adding invisible box in ROOT object */ dfrm_add( dial, ROOT, parent, -4, 0, DIR_VERT); <font color=red>dfrm_align( dial, parent, DIR_HORI, ALIGN_CENTER);</font> <font color=red>dfrm_repack( dial);</font> win = dfrm_form( dial, WAT_FORM,"Alert Box", TRUE); EvntAttach( NULL, AP_TERM, ApTerm); for( ;;) EvntWindom( MU_MESAG); } void ApTerm(void) { while( wglb.first) { ApplWrite( app.id, WM_DESTROY, wglb.first->handle, 0, 0, 0, 0); EvntWindom( MU_MESAG); } ApplExit(); exit( 0); } <font color=red> void wclose( WINDOW *win, int index) { ObjcChange( OC_FORM, win, index, NORMAL, TRUE); ApplWrite( app.id, AP_TERM, 0, 0, 0, 0, 0); } void winfo( WINDOW *win, int index) { FormAlert( 1, "[1][Compiling using|WinDom v%x.%02x" "|DFRM v%x.%02x][OK]", WinDom.patchlevel >> 8 , WinDom.patchlevel & 0x00FF, __DFRM_MAJOR__,__DFRM_MINOR__); ObjcChange( OC_FORM, win, index, NORMAL, TRUE); } </font> </PRE> </TD> <TD WIDTH="48%" VALIGN=TOP> <h3>Last Step</h3> <p> In this last step, we can adding some alignement/justification directive. For example, we want to center texts and buttons inside the form : we specified a centered directive for each concerned object using <tt>dfrm_align()</tt> function. </p> <p> Directives of alignment are effective only after the function <tt>dfrm_repack()</tt> is invoked. </p> <p> <img src="tut_1-4.gif"> </p> <p> We finish by adding callback funtions to selectable objects. We attach the functions : <ol> <li><tt>wclose</tt> to the button "Exit". The function simply close the window. <li><tt>winfo</tt> to the button "Info". This function open an alert box displaying WinDom and DFRM number version. </ol> </p> </TD> </TR> </TABLE> <hr> <address> Comment ? suggestion ? Send a mail to <a href="Dom...@li...">Dominique Béréziat</a>. </address> </BODY> </HTML> --- NEW FILE: tut_1-3.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: tut_1-2.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: tut_1-4.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: Makefile.pc --- # Makefile for Pure C using the cc driver. I guess it is totaly obsolet # Prefer gcc CC = cc CFLAGS = -O -W0,-P LDFLAGS = -lwindom -ldfrm -lpcgemlib -lpcgmxlib -lpctoslib tut_1.app: tut_1.o $(CC) $^ -o $@ $(LDFLAGS) clean: $(RM) *.app *.o --- NEW FILE: tut_1-1.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: lang.fr --- # Le menu M0_DESK DFRM lang M0_INFO A propos ... ^I M0_FILE Fichiers M0_QUIT Quitter ^Q M0_LANG Langue M0_FR Franais M0_EN English # Dial 0 D0_LABEL0 Dmonstration du D0_LABEL1 support multi-langue D0_OK OK D0_TITLE Info |
From: Dominique B. <ber...@us...> - 2010-12-23 17:50:16
|
Update of /cvsroot/windom/extensions/dfrm In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv14475 Modified Files: Doxyfile NEWS Added Files: COPYING Makefile.am Makefile.st configure.ac Removed Files: COPYRIGHT Log Message: adding autoconf and automake stuff (first pass) move examples as demo in docs some restructuraction in tutorial and adding two tutorials --- NEW FILE: Makefile.st --- # Makefile to build DFRM package #!make -f # # Dynamic Forms for WinDom # (copyleft) by Dominique Bereziat # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either # version 2.1 of the License, or (at your option) any later version. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with this library; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # DEST = . #DEST = /usr/local SOURCES=$(wildcard src/*.c) src/globals.h $(wildcard src/*.mak) src/Makefile \ $(wildcard docs/demo/*) \ $(wildcard docs/tutorial/*) \ $(wildcard docs/html/*) include/windom/mt_dfrm.h include/windom/dfrm.h \ lib/gcc295/libdfrm.a \ bin/dfrmstr.ttp \ TODO README NEWS COPYING INSTALL Makefile ChangeLog VERSION=$(shell cat VERSION) all:; $(MAKE) -C src -f Makefile.st docs: .FORCE; doxygen -s Doxyfile > /dev/null test:; echo $(SOURCES) export: rm -rf ../dfrm-$(VERSION) mkdir -p ../dfrm-$(VERSION)/src ../dfrm-$(VERSION)/include/windom mkdir -p ../dfrm-$(VERSION)/lib/gcc295 ../dfrm-$(VERSION)/bin cp -r * ../dfrm-$(VERSION) cd .. && tar cvfz dfrm-$(VERSION).tgz --exclude=CVS --exclude=*~ $(addprefix dfrm-$(VERSION)/,$(SOURCES)) dfrm-$(VERSION)/docs rm -rf ../dfrm-$(VERSION) .FORCE: Index: Doxyfile =================================================================== RCS file: /cvsroot/windom/extensions/dfrm/Doxyfile,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- Doxyfile 13 Mar 2007 00:19:54 -0000 1.6 +++ Doxyfile 23 Dec 2010 17:50:07 -0000 1.7 @@ -1,1098 +1,259 @@ -# Doxyfile 1.3.5 - -# This file describes the settings to be used by the documentation system -# doxygen (www.doxygen.org) for a project -# -# All text after a hash (#) is considered a comment and will be ignored -# The format is: -# TAG = value [value, ...] -# For lists items can also be appended using: -# TAG += value [value, ...] -# Values that contain spaces should be placed between quotes (" ") [...1131 lines suppressed...] - +DOT_TRANSPARENT = NO +DOT_MULTI_TARGETS = NO GENERATE_LEGEND = YES - -# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will -# remove the intermediate dot files that are used to generate -# the various graphs. - DOT_CLEANUP = YES - #--------------------------------------------------------------------------- -# Configuration::addtions related to the search engine +# Options related to the search engine #--------------------------------------------------------------------------- - -# The SEARCHENGINE tag specifies whether or not a search engine should be -# used. If set to NO the values of all tags below this one will be ignored. - SEARCHENGINE = NO --- COPYRIGHT DELETED --- --- NEW FILE: configure.ac --- dnl DFRM: Dynamic FoRMular dnl Copyright (c) 1997-2007 Dominique Bereziat dnl Status : LGPL dnl $Id: configure.ac,v 1.1 2010/12/23 17:50:07 bereziat Exp $ AC_PREREQ(2.59) AC_INIT(configure.ac) dnl For cross compilation AC_CANONICAL_SYSTEM AM_INIT_AUTOMAKE(dfrm,0.4.5,dom...@in...) dnl AM_CONFIG_HEADER(config.h) AC_PROG_AWK AC_PROG_CC AC_PROG_INSTALL AC_PROG_LN_S AC_PROG_MAKE_SET dnl For building library AC_PROG_RANLIB dnl TEST GEMLIB AC_CHECK_LIB(gem,appl_init,,exit) dnl TEST LDG AC_CHECK_LIB(ldg,ldg_open,,exit) dnl TEST WINDOM AC_CHECK_LIB(windom,mt_ApplInit,,exit) dnl Test doxygen dnl AC_CHECK_PROG(DOXYGEN,doxygen,yes,no) dnl AM_CONDITIONAL(BUILD_DOX,test x$DOXYGEN = xyes) dnl Test sur la lib standard AC_HEADER_STDC AC_CHECK_HEADERS([fcntl.h limits.h stddef.h stdlib.h string.h]) # Checks for typedefs, structures, and compiler characteristics. AC_C_CONST AC_TYPE_SIZE_T # Checks for library functions. AC_FUNC_MALLOC AC_FUNC_REALLOC AC_FUNC_VPRINTF AC_CHECK_FUNCS([strdup]) AC_OUTPUT([ Makefile include/Makefile src/Makefile docs/Makefile docs/tutorial/Makefile docs/demo/Makefile ]) --- NEW FILE: Makefile.am --- # DFRM: Dynamic FoRMular # Copyright (c) 1997-2011 Dominique Bereziat SUBDIRS = include src docs all-local: docs/html/index.html docs/html/index.html: Doxyfile src/doxydoc.c @doxygen -s $< >/dev/null clean-local: $(RM) -r docs/html install-data-local: mkdir -p $(DESTDIR)$(docdir)/html for file in docs/html/*.* ; do \ $(INSTALL_DATA) $$file $(DESTDIR)/$(docdir)/html ; \ done uninstall-local: $(RM) -r $(DESTDIR)$(docdir)/html --- NEW FILE: COPYING --- GNU LESSER GENERAL PUBLIC LICENSE Version 2.1, February 1999 Copyright (C) 1991, 1999 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. [This is the first released version of the Lesser GPL. It also counts as the successor of the GNU Library Public License, version 2, hence the version number 2.1.] Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public Licenses are intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This license, the Lesser General Public License, applies to some specially designated software packages--typically libraries--of the Free Software Foundation and other authors who decide to use it. You can use it too, but we suggest you first think carefully about whether this license or the ordinary General Public License is the better strategy to use in any particular case, based on the explanations below. When we speak of free software, we are referring to freedom of use, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish); that you receive source code or can get it if you want it; that you can change the software and use pieces of it in new free programs; and that you are informed that you can do these things. To protect your rights, we need to make restrictions that forbid distributors to deny you these rights or to ask you to surrender these rights. These restrictions translate to certain responsibilities for you if you distribute copies of the library or if you modify it. For example, if you distribute copies of the library, whether gratis or for a fee, you must give the recipients all the rights that we gave you. You must make sure that they, too, receive or can get the source code. If you link other code with the library, you must provide complete object files to the recipients, so that they can relink them with the library after making changes to the library and recompiling it. And you must show them these terms so they know their rights. We protect your rights with a two-step method: (1) we copyright the library, and (2) we offer you this license, which gives you legal permission to copy, distribute and/or modify the library. To protect each distributor, we want to make it very clear that there is no warranty for the free library. Also, if the library is modified by someone else and passed on, the recipients should know that what they have is not the original version, so that the original author's reputation will not be affected by problems that might be introduced by others. Finally, software patents pose a constant threat to the existence of any free program. We wish to make sure that a company cannot effectively restrict the users of a free program by obtaining a restrictive license from a patent holder. Therefore, we insist that any patent license obtained for a version of the library must be consistent with the full freedom of use specified in this license. Most GNU software, including some libraries, is covered by the ordinary GNU General Public License. This license, the GNU Lesser General Public License, applies to certain designated libraries, and is quite different from the ordinary General Public License. We use this license for certain libraries in order to permit linking those libraries into non-free programs. When a program is linked with a library, whether statically or using a shared library, the combination of the two is legally speaking a combined work, a derivative of the original library. The ordinary General Public License therefore permits such linking only if the entire combination fits its criteria of freedom. The Lesser General Public License permits more lax criteria for linking other code with the library. We call this license the "Lesser" General Public License because it does Less to protect the user's freedom than the ordinary General Public License. It also provides other free software developers Less of an advantage over competing non-free programs. These disadvantages are the reason we use the ordinary General Public License for many libraries. However, the Lesser license provides advantages in certain special circumstances. For example, on rare occasions, there may be a special need to encourage the widest possible use of a certain library, so that it becomes a de-facto standard. To achieve this, non-free programs must be allowed to use the library. A more frequent case is that a free library does the same job as widely used non-free libraries. In this case, there is little to gain by limiting the free library to free software only, so we use the Lesser General Public License. In other cases, permission to use a particular library in non-free programs enables a greater number of people to use a large body of free software. For example, permission to use the GNU C Library in non-free programs enables many more people to use the whole GNU operating system, as well as its variant, the GNU/Linux operating system. Although the Lesser General Public License is Less protective of the users' freedom, it does ensure that the user of a program that is linked with the Library has the freedom and the wherewithal to run that program using a modified version of the Library. The precise terms and conditions for copying, distribution and modification follow. Pay close attention to the difference between a "work based on the library" and a "work that uses the library". The former contains code derived from the library, whereas the latter must be combined with the library in order to run. GNU LESSER GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License Agreement applies to any software library or other program which contains a notice placed by the copyright holder or other authorized party saying it may be distributed under the terms of this Lesser General Public License (also called "this License"). Each licensee is addressed as "you". A "library" means a collection of software functions and/or data prepared so as to be conveniently linked with application programs (which use some of those functions and data) to form executables. The "Library", below, refers to any such software library or work which has been distributed under these terms. A "work based on the Library" means either the Library or any derivative work under copyright law: that is to say, a work containing the Library or a portion of it, either verbatim or with modifications and/or translated straightforwardly into another language. (Hereinafter, translation is included without limitation in the term "modification".) "Source code" for a work means the preferred form of the work for making modifications to it. For a library, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the library. Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running a program using the Library is not restricted, and output from such a program is covered only if its contents constitute a work based on the Library (independent of the use of the Library in a tool for writing it). Whether that is true depends on what the Library does and what the program that uses the Library does. 1. You may copy and distribute verbatim copies of the Library's complete source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and distribute a copy of this License along with the Library. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Library or any portion of it, thus forming a work based on the Library, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) The modified work must itself be a software library. b) You must cause the files modified to carry prominent notices stating that you changed the files and the date of any change. c) You must cause the whole of the work to be licensed at no charge to all third parties under the terms of this License. d) If a facility in the modified Library refers to a function or a table of data to be supplied by an application program that uses the facility, other than as an argument passed when the facility is invoked, then you must make a good faith effort to ensure that, in the event an application does not supply such function or table, the facility still operates, and performs whatever part of its purpose remains meaningful. (For example, a function in a library to compute square roots has a purpose that is entirely well-defined independent of the application. Therefore, Subsection 2d requires that any application-supplied function or table used by this function must be optional: if the application does not supply it, the square root function must still compute square roots.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Library, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Library, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Library. In addition, mere aggregation of another work not based on the Library with the Library (or with a work based on the Library) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may opt to apply the terms of the ordinary GNU General Public License instead of this License to a given copy of the Library. To do this, you must alter all the notices that refer to this License, so that they refer to the ordinary GNU General Public License, version 2, instead of to this License. (If a newer version than version 2 of the ordinary GNU General Public License has appeared, then you can specify that version instead if you wish.) Do not make any other change in these notices. Once this change is made in a given copy, it is irreversible for that copy, so the ordinary GNU General Public License applies to all subsequent copies and derivative works made from that copy. This option is useful when you wish to copy part of the code of the Library into a program that is not a library. 4. You may copy and distribute the Library (or a portion or derivative of it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange. If distribution of object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place satisfies the requirement to distribute the source code, even though third parties are not compelled to copy the source along with the object code. 5. A program that contains no derivative of any portion of the Library, but is designed to work with the Library by being compiled or linked with it, is called a "work that uses the Library". Such a work, in isolation, is not a derivative work of the Library, and therefore falls outside the scope of this License. However, linking a "work that uses the Library" with the Library creates an executable that is a derivative of the Library (because it contains portions of the Library), rather than a "work that uses the library". The executable is therefore covered by this License. Section 6 states terms for distribution of such executables. When a "work that uses the Library" uses material from a header file that is part of the Library, the object code for the work may be a derivative work of the Library even though the source code is not. Whether this is true is especially significant if the work can be linked without the Library, or if the work is itself a library. The threshold for this to be true is not precisely defined by law. If such an object file uses only numerical parameters, data structure layouts and accessors, and small macros and small inline functions (ten lines or less in length), then the use of the object file is unrestricted, regardless of whether it is legally a derivative work. (Executables containing this object code plus portions of the Library will still fall under Section 6.) Otherwise, if the work is a derivative of the Library, you may distribute the object code for the work under the terms of Section 6. Any executables containing that work also fall under Section 6, whether or not they are linked directly with the Library itself. 6. As an exception to the Sections above, you may also combine or link a "work that uses the Library" with the Library to produce a work containing portions of the Library, and distribute that work under terms of your choice, provided that the terms permit modification of the work for the customer's own use and reverse engineering for debugging such modifications. You must give prominent notice with each copy of the work that the Library is used in it and that the Library and its use are covered by this License. You must supply a copy of this License. If the work during execution displays copyright notices, you must include the copyright notice for the Library among them, as well as a reference directing the user to the copy of this License. Also, you must do one of these things: a) Accompany the work with the complete corresponding machine-readable source code for the Library including whatever changes were used in the work (which must be distributed under Sections 1 and 2 above); and, if the work is an executable linked with the Library, with the complete machine-readable "work that uses the Library", as object code and/or source code, so that the user can modify the Library and then relink to produce a modified executable containing the modified Library. (It is understood that the user who changes the contents of definitions files in the Library will not necessarily be able to recompile the application to use the modified definitions.) b) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (1) uses at run time a copy of the library already present on the user's computer system, rather than copying library functions into the executable, and (2) will operate properly with a modified version of the library, if the user installs one, as long as the modified version is interface-compatible with the version that the work was made with. c) Accompany the work with a written offer, valid for at least three years, to give the same user the materials specified in Subsection 6a, above, for a charge no more than the cost of performing this distribution. d) If distribution of the work is made by offering access to copy from a designated place, offer equivalent access to copy the above specified materials from the same place. e) Verify that the user has already received a copy of these materials or that you have already sent this user a copy. For an executable, the required form of the "work that uses the Library" must include any data and utility programs needed for reproducing the executable from it. However, as a special exception, the materials to be distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. It may happen that this requirement contradicts the license restrictions of other proprietary libraries that do not normally accompany the operating system. Such a contradiction means you cannot use both them and the Library together in an executable that you distribute. 7. You may place library facilities that are a work based on the Library side-by-side in a single library together with other library facilities not covered by this License, and distribute such a combined library, provided that the separate distribution of the work based on the Library and of the other library facilities is otherwise permitted, and provided that you do these two things: a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities. This must be distributed under the terms of the Sections above. b) Give prominent notice with the combined library of the fact that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. 8. You may not copy, modify, sublicense, link with, or distribute the Library except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense, link with, or distribute the Library is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 9. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Library or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Library (or any work based on the Library), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Library or works based on it. 10. Each time you redistribute the Library (or any work based on the Library), the recipient automatically receives a license from the original licensor to copy, distribute, link with or modify the Library subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties with this License. 11. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Library at all. For example, if a patent license would not permit royalty-free redistribution of the Library by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Library. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply, and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 12. If the distribution and/or use of the Library is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Library under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 13. The Free Software Foundation may publish revised and/or new versions of the Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Library specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Library does not specify a license version number, you may choose any version ever published by the Free Software Foundation. 14. If you wish to incorporate parts of the Library into other free programs whose distribution conditions are incompatible with these, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Libraries If you develop a new library, and you want it to be of the greatest possible use to the public, we recommend making it free software that everyone can redistribute and change. You can do so by permitting redistribution under these terms (or, alternatively, under the terms of the ordinary General Public License). To apply these terms, attach the following notices to the library. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. <one line to give the library's name and a brief idea of what it does.> Copyright (C) <year> <name of author> This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Also add information on how to contact you by electronic and paper mail. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the library, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the library `Frob' (a library for tweaking knobs) written by James Random Hacker. <signature of Ty Coon>, 1 April 1990 Ty Coon, President of Vice That's all there is to it! Index: NEWS =================================================================== RCS file: /cvsroot/windom/extensions/dfrm/NEWS,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- NEWS 4 Mar 2006 21:05:26 -0000 1.4 +++ NEWS 23 Dec 2010 17:50:07 -0000 1.5 @@ -1,4 +1,9 @@ -v 0.4.4 (march 05) +v 0.4.5 (december 10) + Bug fix in dfrm_win_attach() + dfrm_toolbar() now correctly defined + More tutorials + +v 0.4.4 (march 06) Minor changes for better integration in WinDom 2 v 0.4.3 (december 05) |
From: Dominique B. <ber...@us...> - 2010-12-23 17:50:16
|
Update of /cvsroot/windom/extensions/dfrm/src In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv14475/src Modified Files: doxydoc.c Added Files: Makefile.am Makefile.st Removed Files: Makefile Log Message: adding autoconf and automake stuff (first pass) move examples as demo in docs some restructuraction in tutorial and adding two tutorials Index: doxydoc.c =================================================================== RCS file: /cvsroot/windom/extensions/dfrm/src/doxydoc.c,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- doxydoc.c 13 Mar 2007 00:19:54 -0000 1.9 +++ doxydoc.c 23 Dec 2010 17:50:08 -0000 1.10 @@ -4,7 +4,7 @@ /* Doxygen definition and annexes, only for documentation */ -/** +/** * \defgroup dfrm_base Base DFRM functions * * \brief Basic and low-level functions of DFRM. @@ -51,7 +51,7 @@ * \brief Weak functions under developement. Use at your own risk ! */ -/** +/** * \mainpage * * Table of content : @@ -205,7 +205,7 @@ - add but5 vertically. */ -/** +/** * \page lang Support of multi-language * * As external GEM resource file, it is easy to handle multi language @@ -285,7 +285,7 @@ \endverbatim and finaly, the header file which will be included - by source file, <u>created by dfrmstr</u>, looks like : + by source file, <b>created by dfrmstr</b>, looks like : \verbatim /* --- NEW FILE: Makefile.st --- # # GNU makefile to build DFRM and its utilities # $Id: Makefile.st,v 1.1 2010/12/23 17:50:08 bereziat Exp $ # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either # version 2.1 of the License, or (at your option) any later version. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with this library; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # all: @echo "Target are : pc, gcc281, gcc(295), sox, cross, dfrmstr or total" total: pc gcc281 gcc sox dfrmstr pc: $(MAKE) -f pc.mak clean $(MAKE) -f pc.mak sox: $(MAKE) -f sox.mak clean $(MAKE) -f sox.mak gcc281: $(MAKE) -f gcc281.mak clean $(MAKE) -f gcc281.mak gcc295 gcc: # $(MAKE) -f gcc295.mak clean $(MAKE) -f gcc295.mak cross: $(MAKE) -f gcc295.mak CROSS=yes dfrmstr: $(MAKE) -f dfrmstr.mak clean: # $(MAKE) -f pc.mak clean # $(MAKE) -f sox.mak clean # $(MAKE) -f gcc281.mak clean $(MAKE) -f gcc295.mak clean --- NEW FILE: Makefile.am --- # DFRM: Dynamic FoRMular # Copyright (c) 1997-2007 Dominique Bereziat # Status : LGPL # $Id: Makefile.am,v 1.1 2010/12/23 17:50:08 bereziat Exp $ INCLUDES = -I../include libdfrm_a_SOURCES = core.c tune.c align.c tedinfo.c string.c box.c icon.c \ image.c rscstr.c attach.c menu.c slider.c line.c thumb.c \ debug.c globals.h AM_CFLAGS = \ -O2 -fomit-frame-pointer \ -Wall \ -Wmissing-prototypes \ -Winline \ -Wshadow \ -Wpointer-arith \ -Wcast-qual \ -Waggregate-return lib_LIBRARIES = libdfrm.a bin_PROGRAMS = dfrmstr.app dfrmstr_app: dfrmstr.c #eof --- Makefile DELETED --- |
From: Dominique B. <ber...@us...> - 2010-12-23 17:50:15
|
Update of /cvsroot/windom/extensions/dfrm/include In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv14475/include Added Files: Makefile.am Log Message: adding autoconf and automake stuff (first pass) move examples as demo in docs some restructuraction in tutorial and adding two tutorials --- NEW FILE: Makefile.am --- # DFRM: Dynamic FoRMular # Copyright (c) 1997-2007 Dominique Bereziat # Status : LGPL # $Id: Makefile.am,v 1.1 2010/12/23 17:50:08 bereziat Exp $ # SUBDIRS = windom nobase_include_HEADERS = windom/dfrm.h windom/mt_dfrm.h |
From: Dominique B. <ber...@us...> - 2010-12-23 17:50:15
|
Update of /cvsroot/windom/extensions/dfrm/docs/demo In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv14475/docs/demo Added Files: Makefile.am Makefile.st README common.mak demo.c dom.gif gcc281.mak icons.h icons.hrd icons.rsc img.c img.h motif2.iff pc.mak Log Message: adding autoconf and automake stuff (first pass) move examples as demo in docs some restructuraction in tutorial and adding two tutorials --- NEW FILE: Makefile.st --- #!make -f # # Makefile for DFRM & GCC version 2.9.5 # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either # version 2.1 of the License, or (at your option) any later version. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with this library; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # ifeq ($(CROSS),yes) CROSSPREFIX = m68k-atari-mint CC = $(CROSSPREFIX)-gcc AR = $(CROSSPREFIX)-ar PREFIX = /usr/$(CROSSPREFIX) else CC = gcc AR = ar PREFIX = /usr endif CFLAGS = -O -Wall -fomit-frame-pointer -I. -I../include LDFLAGS = LDLIBS = ../lib/gcc295/libdfrm.a -lwindom -lgem -lldg %.app: %.o; $(CC) $(LDFLAGS) $^ $(LDLIBS) -o $@ OBJECTS = demo.o lang.o img.o include common.mak all: demo.app lang.app clean:; $(RM) *.o veryclean:clean; $(RM) *.app --- NEW FILE: img.c --- (This appears to be a binary file; contents omitted.) --- NEW FILE: pc.mak --- # # Makefile for compile DFRM examples with Pure C # CC = cc COPT = -DDEBUG LOPT = -lwout CFLAGS = -g -W0,-P,-C $(COPT) -I..\include LSCREEN = -lscreen -lldg -lme -lmem LDFLAGS = -L..\lib\purec -lm -ldfrm -lwindom -lgem $(LOPT) all: demo.app lang.app demo.app: demo.o img.o $(CC) $^ -o $@ $(LDFLAGS) $(LSCREEN) img.o: img.c img.h lang.app: lang.o $(CC) $^ -o $@ $(LDFLAGS) lang.o: lang.c lang.h lang.h: lang.fr dfrmstr lang.fr lang.h clean: $(RM) *.o *.app --- NEW FILE: common.mak --- ifeq ($(SCREEN),yes) CFLAGS += -DWITH_SCREEN LDLIBS += -lscreen -lme -lldg OBJECTS += img.o endif --- NEW FILE: icons.hrd --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icons.rsc --- (This appears to be a binary file; contents omitted.) --- NEW FILE: img.h --- int ImgInit( void); void ImgExit( void); int ImgLoad( char *file, MFDB *img); void ImgFree( MFDB *img); --- NEW FILE: gcc281.mak --- (This appears to be a binary file; contents omitted.) --- NEW FILE: README --- Here, you can find two demonstration of DFRM. Only makefile for gcc-2.9.5 is supported (see Makefile). To compile, just type $ make to build demo.app and lang.app or $ make demo.app or $ make lang.app To cross compile, you have to add CROSS=yes to make command line : $ make CROSS=yes Other compilers (Pure C, Sozobon C, Gcc 2.8.1) are no longuer supported. However, makefile are provided, but currently not handled (see respectevely pc.mak, soz.mak, gcc281.mak). $Id: README,v 1.1 2010/12/23 17:50:07 bereziat Exp $ --- NEW FILE: Makefile.am --- EXTRA_DIST = icons.rsc icons.hrd icons.h demo.c img.c img.h \ dom.gif motif2.iff common.mak Makefile.st pc.mak gcc281.mak --- NEW FILE: icons.h --- /* Indices du fichier ressource pour ICONS */ #define DIAL 0 /* Formulaire/Dialogue */ #define ICON_MONO 1 /* ICON dans l'arbre DIAL */ #define ICON_COLOR 2 /* USERDEF dans l'arbre DIAL */ --- NEW FILE: motif2.iff --- (This appears to be a binary file; contents omitted.) --- NEW FILE: demo.c --- (This appears to be a binary file; contents omitted.) --- NEW FILE: dom.gif --- (This appears to be a binary file; contents omitted.) |
From: Dominique B. <ber...@us...> - 2010-12-23 17:50:15
|
Update of /cvsroot/windom/extensions/dfrm/docs/tutorial/tut1 In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv14475/docs/tutorial/tut1 Removed Files: Makefile tut_1-1.gif tut_1-2.gif tut_1-3.gif tut_1-4.gif tut_1.c tut_1.html Log Message: adding autoconf and automake stuff (first pass) move examples as demo in docs some restructuraction in tutorial and adding two tutorials --- Makefile DELETED --- --- tut_1.c DELETED --- --- tut_1.html DELETED --- --- tut_1-3.gif DELETED --- --- tut_1-2.gif DELETED --- --- tut_1-4.gif DELETED --- --- tut_1-1.gif DELETED --- |
From: Dominique B. <ber...@us...> - 2010-12-23 17:50:15
|
Update of /cvsroot/windom/extensions/dfrm/examples In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv14475/examples Removed Files: Makefile README common.mak demo.c dom.gif gcc281.mak icons.h icons.hrd icons.rsc img.c img.h lang.c lang.en lang.fr lang.mak motif2.iff pc.mak Log Message: adding autoconf and automake stuff (first pass) move examples as demo in docs some restructuraction in tutorial and adding two tutorials --- lang.en DELETED --- --- lang.mak DELETED --- --- img.c DELETED --- --- pc.mak DELETED --- --- common.mak DELETED --- --- icons.hrd DELETED --- --- Makefile DELETED --- --- icons.rsc DELETED --- --- img.h DELETED --- --- gcc281.mak DELETED --- --- README DELETED --- --- lang.c DELETED --- --- lang.fr DELETED --- --- icons.h DELETED --- --- motif2.iff DELETED --- --- demo.c DELETED --- --- dom.gif DELETED --- |
From: Dominique B. <ber...@us...> - 2010-12-23 17:50:15
|
Update of /cvsroot/windom/extensions/dfrm/docs In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv14475/docs Added Files: Makefile.am Log Message: adding autoconf and automake stuff (first pass) move examples as demo in docs some restructuraction in tutorial and adding two tutorials --- NEW FILE: Makefile.am --- SUBDIRS = demo tutorial nobase_doc_DATA = \ demo/common.mak demo/gcc281.mak demo/icons.rsc demo/Makefile.st \ demo/demo.c demo/icons.h demo/img.c demo/motif2.iff demo/dom.gif \ demo/icons.hrd demo/img.h demo/pc.mak \ \ tutorial/index.html tutorial/Makefile.gcc tutorial/Makefile.pc \ tutorial/tut_1.html tutorial/tut_1-1.gif tutorial/tut_1-2.gif \ tutorial/tut_1-3.gif tutorial/tut_1-4.gif tutorial/tut_1.c \ tutorial/tut_2.c tutorial/tut_2.html tutorial/tut_3.html \ tutorial/toolbar.c |
From: Dominique B. <ber...@us...> - 2010-12-23 17:41:08
|
Update of /cvsroot/windom/extensions/dfrm/docs/demo In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv12458/demo Log Message: Directory /cvsroot/windom/extensions/dfrm/docs/demo added to the repository |
From: Arnaud B. <ber...@us...> - 2010-12-22 11:59:06
|
Update of /cvsroot/windom/extensions/wstroke/src In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv14338 Modified Files: files.mak Log Message: dummy change to test syncmail and cvs mailing list Index: files.mak =================================================================== RCS file: /cvsroot/windom/extensions/wstroke/src/files.mak,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- files.mak 18 Mar 2005 21:31:29 -0000 1.2 +++ files.mak 22 Dec 2010 11:58:58 -0000 1.3 @@ -22,6 +22,7 @@ # $Date$ # $Revision$ # +# OBJECTS = stroke.o winstroke.o HEADERS = ../include/mt_wstroke.h ../include/wstroke.h |
From: Arnaud B. <ber...@us...> - 2009-12-04 13:51:50
|
Update of /cvsroot/windom/htdocs In directory sfp-cvsdas-1.v30.ch3.sourceforge.com:/tmp/cvs-serv22077 Removed Files: Makefile index-2.html index-old.html onews.html Log Message: clean up : removed old files --- index-2.html DELETED --- --- Makefile DELETED --- --- onews.html DELETED --- --- index-old.html DELETED --- |
From: Arnaud B. <ber...@us...> - 2009-12-04 13:47:37
|
Update of /cvsroot/windom/htdocs In directory sfp-cvsdas-1.v30.ch3.sourceforge.com:/tmp/cvs-serv21695 Modified Files: update.sh Log Message: simplier script, that works with today way to access sf.net Index: update.sh =================================================================== RCS file: /cvsroot/windom/htdocs/update.sh,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- update.sh 23 Nov 2005 20:46:13 -0000 1.4 +++ update.sh 4 Dec 2009 13:47:25 -0000 1.5 @@ -2,66 +2,25 @@ # edit this variable if your user name on # sourceforge is different from your local computer. -USERSF=`sed -e "s/:ext://g" -e "s/@.*//g" CVS/Root` -echo USERSF is $USERSF - -case $# in - 0) - cat <<EOF -Script to update the web site of WinDom on SF. -Usage is : $0 options -options are : - commit perform a cvs commit - sync publish local repository on web site (using rsync) - scp publish local repository on web site (using scp) - all 'commit' then 'sync' - -ps : rsync is very fast compare to scp : only touched file - are uploaded. - -EOF - exit 0 - ;; - *) - ;; -esac - -function commit() { - CVSROOT=$US...@cv...:/cvsroot/windom - CVS_RSH=ssh - cvs commit -} - -function sync() { - chmod -R 775 . - rsync --cvs-exclude --progress -ar `pwd` $US...@sh...:/home/groups/w/wi/windom - -} - -function scp_() { - scp -r . $US...@sh...:/home/groups/w/wi/windom/htdocs/ -} -case $1 in - commit) - commit - ;; - sync) - sync - ;; - scp) - scp_ - ;; - all) - commit - sync - ;; - *) - echo 'Unknown option - abort' - ;; -esac +echo +echo UPLOAD of windom web site to SF.NET server +echo +USERSF=`sed -e "s/:ext://g" -e "s/@.*//g" CVS/Root` +echo USERSF is $USERSF +echo +echo "********************************************************************" +echo "* Do not forget to commit your changes of the web site in CVS too. " +echo "********************************************************************" +echo +rsync --cvs-exclude --progress -ar -e ssh . $USERSF,wi...@we...:htdocs/ +echo +echo "********************************************************************" +echo "* Do not forget to commit your changes of the web site in CVS too. " +echo "********************************************************************" +echo |
From: Arnaud B. <ber...@us...> - 2009-12-04 13:45:35
|
Update of /cvsroot/windom/htdocs In directory sfp-cvsdas-1.v30.ch3.sourceforge.com:/tmp/cvs-serv21512 Modified Files: index.html Log Message: compliance with new sf.net logo and rules Index: index.html =================================================================== RCS file: /cvsroot/windom/htdocs/index.html,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- index.html 22 Jun 2006 11:52:29 -0000 1.15 +++ index.html 4 Dec 2009 13:45:21 -0000 1.16 @@ -91,8 +91,7 @@ <div class="links"> <p><i>windom project is hosted by:</i><br> -<a href="http://sourceforge.net"><img src="http://sourceforge.net/sflogo.php?group_id=68507&type=5" -width="210" height="62" border="0" alt="SourceForge" /></a><br> +<a href="http://sourceforge.net/projects/windom"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=68507&type=16" width="150" height="40" alt="Get WinDom, a high level GEM library. at SourceForge.net. Fast, secure and Free Open Source software downloads" border=0 /></a><br> <h2>Links</h2> <h3>WinDom</h3> |
From: David G. <dg...@us...> - 2009-03-13 19:25:43
|
Update of /cvsroot/windom/windom/src In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv13514 Modified Files: move_work.c Log Message: If window is iconified don't allow to move window contents, this avoid that the icon moves if for example arrow keys are sending line/page up,down,left,right. Index: move_work.c =================================================================== RCS file: /cvsroot/windom/windom/src/move_work.c,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- move_work.c 6 Feb 2007 21:09:49 -0000 1.12 +++ move_work.c 13 Mar 2009 19:25:31 -0000 1.13 @@ -133,6 +133,10 @@ void move_work( APPvar *app, WINDOW *win, int dx, int dy) { short buff[8]; + + /* If window is iconified don't move the work area */ + if ( win -> status & WS_ICONIFY ) + return; buff[0] = WM_SLIDEXY; buff[4] = dx; buff[5] = dy; |
From: David G. <dg...@us...> - 2009-03-13 19:18:59
|
Update of /cvsroot/windom/windom/src In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv11649 Modified Files: do_update.c evnt_list.c Log Message: When a redraw is request not always goes throug do_update() function so a better place to check if window is iconified is in EvntExec(). Index: evnt_list.c =================================================================== RCS file: /cvsroot/windom/windom/src/evnt_list.c,v retrieving revision 1.20 retrieving revision 1.21 diff -u -d -r1.20 -r1.21 --- evnt_list.c 6 Feb 2007 21:09:46 -0000 1.20 +++ evnt_list.c 13 Mar 2009 19:18:48 -0000 1.21 @@ -550,9 +550,16 @@ */ int mt_EvntExec( APPvar *app, WINDOW *w, short buff[8]) { + EV_MSG *handler; + int found; WINDOW *win = w ? w : app->priv->desk; - EV_MSG *handler = evnt_find( &win->binding, buff[0]); - int found = 0; + + if ((buff[0] == WM_REDRAW) && (win->status & WS_ICONIFY) ) + buff[0] = WM_ICONDRAW; + + + handler = evnt_find( &win->binding, buff[0]); + found = 0; /* set flag WS_WIN_IN_USE to prevent mt_WindDelete() to free win */ win->status |= WS_WIN_IN_USE; Index: do_update.c =================================================================== RCS file: /cvsroot/windom/windom/src/do_update.c,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- do_update.c 6 Feb 2007 21:09:46 -0000 1.15 +++ do_update.c 13 Mar 2009 19:18:47 -0000 1.16 @@ -50,9 +50,9 @@ while( !mt_wind_update(BEG_UPDATE, app->aes_global)); mt_graf_mouse( M_OFF, 0L, app->aes_global); - - buff[0] = ( win->status & WS_ICONIFY ) ? WM_ICONDRAW : WM_REDRAW; - + + buff[0] = WM_REDRAW; + mt_WindGet( app, win, WF_WORKXYWH, &rwork.g_x, &rwork.g_y, &rwork.g_w, &rwork.g_h); mt_wind_get( win->handle, WF_WORKXYWH, &x, &y, &w, &h, app->aes_global); if (app->aes4 & AES4_FIRSTAREAXYWH) |
From: David G. <dg...@us...> - 2009-03-13 17:17:22
|
Update of /cvsroot/windom/windom/src In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv10592 Modified Files: frm_keyhd.c Log Message: if window formular is iconified don't process the keyboard event Index: frm_keyhd.c =================================================================== RCS file: /cvsroot/windom/windom/src/frm_keyhd.c,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- frm_keyhd.c 6 Feb 2007 21:09:46 -0000 1.7 +++ frm_keyhd.c 13 Mar 2009 17:16:54 -0000 1.8 @@ -68,6 +68,11 @@ int res, x2, y2; INT16 x, y; + /* if the window formular is iconified don't process the keyboard event */ + + if ( win -> status & WS_ICONIFY ) + return; + scancode = app->evnt.keybd >> 8; dial = form->root; |
From: David G. <dg...@us...> - 2009-02-20 00:45:16
|
Update of /cvsroot/windom/windom/userdef/extended In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv14769/windom/userdef/extended Modified Files: draw.c extend.c Log Message: XEDIT field borders should be redrawn correctly now Index: extend.c =================================================================== RCS file: /cvsroot/windom/windom/userdef/extended/extend.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- extend.c 6 Feb 2007 21:09:57 -0000 1.6 +++ extend.c 20 Feb 2009 00:45:05 -0000 1.7 @@ -63,6 +63,11 @@ border = -1; break; #endif + case G_FTEXT: /* re-align for XEDIT fields */ + if (tree[idx].ob_state & DRAW3D) + border = -2; + else border = -1; + break; default: /* TODO: what kind of ob_type need the following ? */ border = -1; if( tree[idx].ob_flags & EXIT) border --; @@ -263,20 +268,23 @@ if (mode & RSRC_XTYPE) { switch( extype) { case DCRBUTTON: TRANSFORM_3DOBJECT(ub_button,extype) - case SLIDEPART: TRANSFORM_3DOBJECT(ub_boxchar3d,extype) - case XBOXLONGTEXT: TRANSFORM_3DOBJECT(ub_multiligne,extype) - case XTEDINFO: TRANSFORM_3DOBJECT(ub_boxtext3d,extype) - case TITLEBOX: TRANSFORM_OBJECT(ub_boxtitle,extype) - case UNDERLINE: TRANSFORM_OBJECT(ub_ulinetext,extype) - case CIRCLEBUT: TRANSFORM_OBJECT(ub_boxcircle,extype) - case ONGLET: TRANSFORM_OBJECT(ub_onglet,extype) - case KPOPUPSTRG: TRANSFORM_OBJECT(ub_popuptext,extype) - case MENUTITLE: TRANSFORM_OBJECT(ub_mntitle,extype) - case DIALMOVER: TRANSFORM_OBJECT(ub_dialmover,extype) + case SLIDEPART: TRANSFORM_3DOBJECT(ub_boxchar3d,extype) + case XBOXLONGTEXT: TRANSFORM_3DOBJECT(ub_multiligne,extype) + case XTEDINFO: TRANSFORM_3DOBJECT(ub_boxtext3d,extype) + case TITLEBOX: TRANSFORM_OBJECT(ub_boxtitle,extype) + case UNDERLINE: TRANSFORM_OBJECT(ub_ulinetext,extype) + case CIRCLEBUT: TRANSFORM_OBJECT(ub_boxcircle,extype) + case ONGLET: TRANSFORM_OBJECT(ub_onglet,extype) + case KPOPUPSTRG: TRANSFORM_OBJECT(ub_popuptext,extype) + case MENUTITLE: TRANSFORM_OBJECT(ub_mntitle,extype) + case DIALMOVER: TRANSFORM_OBJECT(ub_dialmover,extype) #ifdef MODIF_XEDIT case XEDIT: - if (_xobjc_init_xedit( tree, ob, env)) + _xobjc_align_obj3d ( tree, ob, 1); + if (_xobjc_init_xedit( tree, ob, env)){ + _xobjc_align_obj3d ( tree, ob, 0); return 0; + } return 1; #endif } @@ -288,7 +296,7 @@ tree[ob].ob_state |= DRAW3D; /* force flag DRAW3D */ switch( type) { case G_BUTTON: TRANSFORM_3DOBJECT(ub_but3d,XFREESTR) - case G_BOX: TRANSFORM_3DOBJECT(ub_box3d,XBFOBSPEC) + case G_BOX: TRANSFORM_3DOBJECT(ub_box3d,XBFOBSPEC) case G_IBOX: TRANSFORM_3DOBJECT(ub_ibox3d,XBFOBSPEC) case G_BOXCHAR: TRANSFORM_3DOBJECT(ub_boxchar3d,XBFOBSPEC) case G_BOXTEXT: @@ -341,8 +349,8 @@ static void _xobjc_unextended_type( OBJECT *tree, int idx, APPENV *env) { - long addr; - short type; + long addr; + short type; short oldf; type = ((W_PARM*)tree[idx].ob_spec.userblk->ub_parm)->wp_type; Index: draw.c =================================================================== RCS file: /cvsroot/windom/windom/userdef/extended/draw.c,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- draw.c 27 Jun 2008 18:32:11 -0000 1.14 +++ draw.c 20 Feb 2009 00:45:05 -0000 1.15 @@ -165,7 +165,7 @@ grect.g_w -= border + border; if (grect.g_w <= 0) return 0; grect.g_h -= border + border; if (grect.g_h <= 0) return 0; - rc_intersect( &grect, &gclip); + if ( !(rc_intersect( &grect, &gclip))) return 0; if (gclip.g_w <= 0 || gclip.g_h <= 0) return 0; grect_to_array( &gclip, tab); @@ -1981,7 +1981,6 @@ UDLIB_LOCAL char *pvalid; UDLIB_LOCAL INT16 tab[12]; UDLIB_LOCAL char str[128]; - UDLIB_LOCAL GRECT r1, r2; UDLIB_LOCAL GRECT grect; UDLIB_LOCAL XOBJC_DATA *uldata; UDLIB_LOCAL short vdih; @@ -1999,7 +1998,7 @@ * background */ - draw_background( uldata, pblk, 2, 2, DIALM_PAT); + draw_background( uldata, pblk, 0, 0, DIALM_PAT); /* @@ -2036,10 +2035,15 @@ vswr_mode( vdih, MD_REPLACE); v_bar( vdih, tab); if( IS_STATE(pblk,DRAW3D)) { - draw_frame( vdih, pblk, 2, LBLACK, WHITE); - draw_frame( vdih, pblk, 1, BLACK, BLACK); + draw_frame( vdih, pblk, 0, LBLACK, WHITE); + draw_frame( vdih, pblk, -1, BLACK, BLACK); } else - draw_frame( vdih, pblk, 1, BLACK, BLACK); + draw_frame( vdih, pblk, 0, BLACK, BLACK); + + vs_clip_off( vdih); + + if ( !(clip_inside ( vdih, pblk, IS_STATE(pblk,DRAW3D)+1 ) )) + return 0; /* * text @@ -2055,15 +2059,6 @@ txt = str; } else txt = p; - - vs_clip_off( vdih); - - /* clip within the border so that the text doesn't overwrite borders */ - rc_set( &r2, pblk->pb_x, pblk->pb_y, pblk->pb_w, pblk->pb_h); - rc_set( &r1, pblk->pb_xc, pblk->pb_yc, pblk->pb_wc, pblk->pb_hc); - rc_intersect( &r1, &r2); - grect_to_array( &r2, tab); - vs_clip( vdih, 1, tab); vst_effects( vdih, 0); set_attrib( uldata, &CONF(uldata)->xedit_text); |
From: David G. <dg...@us...> - 2009-02-20 00:45:12
|
Update of /cvsroot/windom/windom/userdef/textured In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv14769/windom/userdef/textured Modified Files: draw.c extend.c Log Message: XEDIT field borders should be redrawn correctly now Index: extend.c =================================================================== RCS file: /cvsroot/windom/windom/userdef/textured/extend.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- extend.c 3 Nov 2005 22:18:05 -0000 1.6 +++ extend.c 20 Feb 2009 00:45:05 -0000 1.7 @@ -64,6 +64,11 @@ border = -1; break; #endif + case G_FTEXT: /* re-align for XEDIT fields */ + if (tree[idx].ob_state & DRAW3D) + border = -2; + else border = -1; + break; default: /* TODO: what kind of ob_type need the following ? */ border = -1; if( tree[idx].ob_flags & EXIT) border --; @@ -264,20 +269,23 @@ if (mode & RSRC_XTYPE) { switch( extype) { case DCRBUTTON: TRANSFORM_3DOBJECT(ub_button,extype) - case SLIDEPART: TRANSFORM_3DOBJECT(ub_boxchar3d,extype) - case XBOXLONGTEXT: TRANSFORM_3DOBJECT(ub_multiligne,extype) - case XTEDINFO: TRANSFORM_3DOBJECT(ub_boxtext3d,extype) - case TITLEBOX: TRANSFORM_OBJECT(ub_boxtitle,extype) - case UNDERLINE: TRANSFORM_OBJECT(ub_ulinetext,extype) - case CIRCLEBUT: TRANSFORM_OBJECT(ub_boxcircle,extype) - case ONGLET: TRANSFORM_3DOBJECT(ub_onglet,extype) - case KPOPUPSTRG: TRANSFORM_OBJECT(ub_popuptext,extype) - case MENUTITLE: TRANSFORM_OBJECT(ub_mntitle,extype) - case DIALMOVER: TRANSFORM_OBJECT(ub_dialmover,extype) + case SLIDEPART: TRANSFORM_3DOBJECT(ub_boxchar3d,extype) + case XBOXLONGTEXT: TRANSFORM_3DOBJECT(ub_multiligne,extype) + case XTEDINFO: TRANSFORM_3DOBJECT(ub_boxtext3d,extype) + case TITLEBOX: TRANSFORM_OBJECT(ub_boxtitle,extype) + case UNDERLINE: TRANSFORM_OBJECT(ub_ulinetext,extype) + case CIRCLEBUT: TRANSFORM_OBJECT(ub_boxcircle,extype) + case ONGLET: TRANSFORM_3DOBJECT(ub_onglet,extype) + case KPOPUPSTRG: TRANSFORM_OBJECT(ub_popuptext,extype) + case MENUTITLE: TRANSFORM_OBJECT(ub_mntitle,extype) + case DIALMOVER: TRANSFORM_OBJECT(ub_dialmover,extype) #ifdef MODIF_XEDIT case XEDIT: - if (_xobjc_init_xedit( tree, ob, env)) + _xobjc_align_obj3d ( tree, ob, 1); + if (_xobjc_init_xedit( tree, ob, env)){ + _xobjc_align_obj3d ( tree, ob, 0); return 0; + } return 1; #endif } Index: draw.c =================================================================== RCS file: /cvsroot/windom/windom/userdef/textured/draw.c,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- draw.c 27 Jun 2008 18:32:12 -0000 1.8 +++ draw.c 20 Feb 2009 00:45:05 -0000 1.9 @@ -166,7 +166,7 @@ grect.g_w -= border + border; if (grect.g_w <= 0) return 0; grect.g_h -= border + border; if (grect.g_h <= 0) return 0; - rc_intersect( &grect, &gclip); + if ( !(rc_intersect( &grect, &gclip))) return 0; if (gclip.g_w <= 0 || gclip.g_h <= 0) return 0; grect_to_array( &gclip, tab); @@ -2081,7 +2081,6 @@ UDLIB_LOCAL char *pvalid; UDLIB_LOCAL INT16 tab[12]; UDLIB_LOCAL char str[128]; - UDLIB_LOCAL GRECT r1, r2; UDLIB_LOCAL GRECT grect; UDLIB_LOCAL XOBJC_DATA *uldata; UDLIB_LOCAL short vdih; @@ -2099,7 +2098,7 @@ * background */ - draw_background( vdih, pblk->pb_tree->ob_x, pblk->pb_tree->ob_y, &grect, 2, 2, NULL); + draw_background( vdih, pblk->pb_tree->ob_x, pblk->pb_tree->ob_y, &grect, 0, 0, NULL); /* @@ -2136,10 +2135,15 @@ vswr_mode( vdih, MD_REPLACE); v_bar( vdih, tab); if( IS_STATE(pblk,DRAW3D)) { - draw_frame( vdih, pblk, 2, LBLACK, WHITE); - draw_frame( vdih, pblk, 1, BLACK, BLACK); + draw_frame( vdih, pblk, 0, LBLACK, WHITE); + draw_frame( vdih, pblk, -1, BLACK, BLACK); } else - draw_frame( vdih, pblk, 1, BLACK, BLACK); + draw_frame( vdih, pblk, 0, BLACK, BLACK); + + vs_clip_off( vdih); + + if ( !(clip_inside ( vdih, pblk, IS_STATE(pblk,DRAW3D)+1 ) )) + return 0; /* * text @@ -2155,15 +2159,6 @@ txt = str; } else txt = p; - - vs_clip_off( vdih); - - /* clip within the border so that the text doesn't overwrite borders */ - rc_set( &r2, pblk->pb_x, pblk->pb_y, pblk->pb_w, pblk->pb_h); - rc_set( &r1, pblk->pb_xc, pblk->pb_yc, pblk->pb_wc, pblk->pb_hc); - rc_intersect( &r1, &r2); - grect_to_array( &r2, tab); - vs_clip( vdih, 1, tab); vst_effects( vdih, 0); set_attrib( uldata, &CONF(uldata)->xedit_text); |
From: David G. <dg...@us...> - 2009-02-20 00:45:11
|
Update of /cvsroot/windom/windom/userdef/xgem In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv14769/windom/userdef/xgem Modified Files: draw.c extend.c Log Message: XEDIT field borders should be redrawn correctly now Index: extend.c =================================================================== RCS file: /cvsroot/windom/windom/userdef/xgem/extend.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- extend.c 3 Nov 2005 22:08:58 -0000 1.2 +++ extend.c 20 Feb 2009 00:45:05 -0000 1.3 @@ -67,6 +67,11 @@ border = -1; break; #endif + case G_FTEXT: /* re-align for XEDIT fields */ + if (tree[idx].ob_state & DRAW3D) + border = -2; + else border = -1; + break; default: /* TODO: what kind of ob_type need the following ? */ border = -1; if( tree[idx].ob_flags & EXIT) border --; @@ -267,21 +272,24 @@ if (mode & RSRC_XTYPE) { switch( extype) { case DCRBUTTON: TRANSFORM_3DOBJECT(ub_button,extype) - case SLIDEPART: TRANSFORM_3DOBJECT(ub_boxchar3d,extype) - case XBOXLONGTEXT: TRANSFORM_3DOBJECT(ub_multiligne,extype) - case XTEDINFO: TRANSFORM_3DOBJECT(ub_boxtext3d,extype) - case TITLEBOX: TRANSFORM_OBJECT(ub_boxtitle,extype) - case UNDERLINE: TRANSFORM_OBJECT(ub_ulinetext,extype) - case CIRCLEBUT: TRANSFORM_OBJECT(ub_boxcircle,extype) - case ONGLET: TRANSFORM_3DOBJECT(ub_onglet,extype) - case KPOPUPSTRG: TRANSFORM_OBJECT(ub_popuptext,extype) - case MENUTITLE: TRANSFORM_OBJECT(ub_mntitle,extype) - case DIALMOVER: TRANSFORM_OBJECT(ub_dialmover,extype) + case SLIDEPART: TRANSFORM_3DOBJECT(ub_boxchar3d,extype) + case XBOXLONGTEXT: TRANSFORM_3DOBJECT(ub_multiligne,extype) + case XTEDINFO: TRANSFORM_3DOBJECT(ub_boxtext3d,extype) + case TITLEBOX: TRANSFORM_OBJECT(ub_boxtitle,extype) + case UNDERLINE: TRANSFORM_OBJECT(ub_ulinetext,extype) + case CIRCLEBUT: TRANSFORM_OBJECT(ub_boxcircle,extype) + case ONGLET: TRANSFORM_3DOBJECT(ub_onglet,extype) + case KPOPUPSTRG: TRANSFORM_OBJECT(ub_popuptext,extype) + case MENUTITLE: TRANSFORM_OBJECT(ub_mntitle,extype) + case DIALMOVER: TRANSFORM_OBJECT(ub_dialmover,extype) #ifdef MODIF_XEDIT case XEDIT: - if (_xobjc_init_xedit( tree, ob, env)) + _xobjc_align_obj3d ( tree, ob, 1); + if (_xobjc_init_xedit( tree, ob, env)){ + _xobjc_align_obj3d ( tree, ob, 0); return 0; - return 1; + } + return 1;; #endif } } Index: draw.c =================================================================== RCS file: /cvsroot/windom/windom/userdef/xgem/draw.c,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- draw.c 27 Jun 2008 18:32:12 -0000 1.7 +++ draw.c 20 Feb 2009 00:45:05 -0000 1.8 @@ -392,7 +392,7 @@ grect.g_w -= border + border; if (grect.g_w <= 0) return 0; grect.g_h -= border + border; if (grect.g_h <= 0) return 0; - rc_intersect( &grect, &gclip); + if ( !(rc_intersect( &grect, &gclip))) return 0; if (gclip.g_w <= 0 || gclip.g_h <= 0) return 0; grect_to_array( &gclip, tab); @@ -2357,7 +2357,6 @@ UDLIB_LOCAL char *pvalid; UDLIB_LOCAL INT16 tab[12]; UDLIB_LOCAL char str[128]; - UDLIB_LOCAL GRECT r1, r2; UDLIB_LOCAL GRECT grect; UDLIB_LOCAL XOBJC_DATA *uldata; UDLIB_LOCAL short vdih; @@ -2375,7 +2374,7 @@ * background */ - draw_background( vdih, &grect, 2, 2, NO_SHADING); + draw_background( vdih, &grect, 0, 0, NO_SHADING); /* @@ -2412,11 +2411,17 @@ vswr_mode( vdih, MD_REPLACE); v_bar( vdih, tab); if( IS_STATE(pblk,DRAW3D)) { - draw_frame( vdih, pblk, 2, LBLACK, WHITE); - draw_frame( vdih, pblk, 1, BLACK, BLACK); + draw_frame( vdih, pblk, 0, LBLACK, WHITE); + draw_frame( vdih, pblk, -1, BLACK, BLACK); } else - draw_frame( vdih, pblk, 1, BLACK, BLACK); + draw_frame( vdih, pblk, 0, BLACK, BLACK); + + vs_clip_off( vdih); + if ( !(clip_inside ( vdih, pblk, IS_STATE(pblk,DRAW3D)+1 ) )) + return 0; + + /* * text */ @@ -2431,15 +2436,6 @@ txt = str; } else txt = p; - - vs_clip_off( vdih); - - /* clip within the border so that the text doesn't overwrite borders */ - rc_set( &r2, pblk->pb_x, pblk->pb_y, pblk->pb_w, pblk->pb_h); - rc_set( &r1, pblk->pb_xc, pblk->pb_yc, pblk->pb_wc, pblk->pb_hc); - rc_intersect( &r1, &r2); - grect_to_array( &r2, tab); - vs_clip( vdih, 1, tab); vst_effects( vdih, 0); set_attrib( uldata, &CONF(uldata)->xedit_text); |