dtappbuilder: make it build under autotools

This commit is contained in:
Chase
2020-09-05 15:27:30 -05:00
committed by Jon Trulson
parent cb3180cd2a
commit 65d2062518
126 changed files with 846 additions and 65 deletions

View File

@@ -0,0 +1,72 @@
MAINTAINERCLEANFILES = Makefile.in
ABINCLUDES = ../include
EXTRA_DEFINES = -D_POSIX_SOURCE=1
if HPUX
CCOPTIONS = -Ae
endif
if AIX
CCOPTIONS = -qnoro
endif
if BSD
UTILLIB = -lutil
endif
SOURCES.msg = \
dtcodegen.msg \
../libAButil/libAButil.msg \
../libABobjXm/libABobjXm.msg \
../libABil/libABil.msg
bin_PROGRAMS = dtcodegen
#noinst_PROGRAMS = ab_func_strings test_parse test_merge
noinst_DATA = dtcodegen.cat
dtcodegen_CFLAGS = $(EXTRA_DEFINES) -I$(ABINCLUDES) -I../libABil
dtcodegen_LDADD = -lXext ../libABil/libABil.a \
../libABobjXm/libABobjXm.a \
../libABobj/libABobj.a ../libAButil/libAButil.a \
$(LIBTERM) $(LIBSVC) $(LIBTT) $(LIBHELP) $(LIBXIN) \
$(LIBWIDGET) $(UTILLIB) $(XTOOLLIB) -lm
dtcodegen_SOURCES = abmf.c args.c \
cdefs.c connect.c \
create_decls.c dtb_utils.c \
generate_code.c instances.c \
lib_func_strings.c make_file.c \
merge_c.c motifdefs.c \
msg_cvt.c msg_file.c \
obj_names.c parse_c.c \
proj_c_file.c proj_header_file.c \
resource_file.c stubs_c_file.c \
ui_c_file.c ui_header_file.c \
utils.c utils_c_file.c \
utils_header_file.c write_c.c \
write_code.c
#ab_func_strings_LDADD = -lm ../libAButil/libAButil.a
#ab_func_strings_SOURCES = ab_func_strings.c
#test_parse_CFLAGS = -DMAIN -D_POSIX_SOURCE=1 -I$(ABINCLUDES)
#test_parse_LDADD = ../libAButil/libAButil.a
#test_parse_SOURCES = parse_c.c
#test_merge_CFLAGS = -DMAIN -D_POSIX_SOURCE=1 -I$(ABINCLUDES)
#test_merge_LDADD = ../libAButil/libAButil.a parse_c.o
#test_merge_SOURCES = merge_c.c
dtcodegen.cat:: $(SOURCES.msg)
$(GENCAT) dtcodegen.cat $(SOURCES.msg)

View File

@@ -53,7 +53,7 @@
#include <ab_private/obj.h>
#include <ab_private/objxm.h>
#include <ab_private/bil.h>
#include "dtb_utils.h"
#include <ab_private/dtb_utils.h>
#include "write_codeP.h"
#include "motifdefsP.h"
#include "argsP.h"
@@ -61,7 +61,7 @@
#include "instancesP.h"
#include "ui_header_fileP.h"
#include "abmfP.h"
#include "abmf.h"
#include <ab_private/abmf.h>
/* glibc considers CLK_TCK obsolete */
#if defined(__linux__) && !defined(CLK_TCK)

View File

@@ -1,85 +0,0 @@
/*
* CDE - Common Desktop Environment
*
* Copyright (c) 1993-2012, The Open Group. All rights reserved.
*
* These libraries and programs are free software; you can
* redistribute them and/or modify them under the terms of the GNU
* Lesser General Public License as published by the Free Software
* Foundation; either version 2 of the License, or (at your option)
* any later version.
*
* These libraries and programs are distributed in the hope that
* they 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 these libraries and programs; if not, write
* to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
* Floor, Boston, MA 02110-1301 USA
*/
/*
* $XConsortium: abmf.h /main/3 1995/11/06 18:01:36 rswiston $
*
* @(#)abmf.h 1.3 15 Jul 1994 cde_app_builder/src/abmf
*
* RESTRICTED CONFIDENTIAL INFORMATION:
*
* The information in this document is subject to special
* restrictions in a confidential disclosure agreement between
* HP, IBM, Sun, USL, SCO and Univel. Do not distribute this
* document outside HP, IBM, Sun, USL, SCO, or Univel without
* Sun's specific written approval. This document and all copies
* and derivative works thereof must be returned or destroyed at
* Sun's request.
*
* Copyright 1993 Sun Microsystems, Inc. All rights reserved.
*
*/
/*
* abmf.h - public entry points to the code generator
*/
#ifndef _ABMF_ABMF_H_
#define _ABMF_ABMF_H_
#include <ab_private/obj.h>
typedef enum
{
ABMF_I18N_UNDEF= 0,
ABMF_I18N_NONE, /* no i18n */
ABMF_I18N_XPG4_API, /* generated code conforms to
* XPG4 API
*/
ABMF_I18N_METHOD_NUM_VALUES /* must be last */
} ABMF_I18N_METHOD;
typedef enum
{
ABMF_CGEN_UNDEF,
ABMF_CGEN_ALL,
ABMF_CGEN_BY_DATE,
ABMF_CGEN_BY_DATE_AND_CONTENTS,
ABMF_CGEN_RESTRICTION_NUM_VALUES /* must be last */
} ABMF_CGEN_RESTRICTION;
/*
* "dumped" resources are written to a resource file, rather than a C file
*/
int abmf_generate_code(
ABObj project,
ABMF_CGEN_RESTRICTION restriction,
BOOL merge_files,
ABMF_I18N_METHOD i18nMethod,
BOOL prototype_functions,
AB_ARG_CLASS_FLAGS dumped_resources
);
#endif /* _ABMF_ABMF_H_ */

View File

@@ -56,7 +56,7 @@
#include <ab_private/obj.h>
#include <ab_private/trav.h>
#include <ab_private/strlist.h>
#include "abmf.h"
#include <ab_private/abmf.h>
/*
* Constants

View File

@@ -52,7 +52,7 @@
#include <sys/param.h>
#include <sys/stat.h>
#include <ab_private/util.h>
#include "dtb_utils.h"
#include <ab_private/dtb_utils.h>
/*
* Map Xt/Xm symbols to symbols we have defined

View File

@@ -1,56 +0,0 @@
/*
* CDE - Common Desktop Environment
*
* Copyright (c) 1993-2012, The Open Group. All rights reserved.
*
* These libraries and programs are free software; you can
* redistribute them and/or modify them under the terms of the GNU
* Lesser General Public License as published by the Free Software
* Foundation; either version 2 of the License, or (at your option)
* any later version.
*
* These libraries and programs are distributed in the hope that
* they 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 these libraries and programs; if not, write
* to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
* Floor, Boston, MA 02110-1301 USA
*/
/*
* $XConsortium: dtb_utils.h /main/3 1995/11/06 18:04:40 rswiston $
*
* @(#)dtb_utils.h 1.1 20 Sep 1994 cde_app_builder/src/abmf
*
* RESTRICTED CONFIDENTIAL INFORMATION:
*
* The information in this document is subject to special
* restrictions in a confidential disclosure agreement between
* HP, IBM, Sun, USL, SCO and Univel. Do not distribute this
* document outside HP, IBM, Sun, USL, SCO, or Univel without
* Sun's specific written approval. This document and all copies
* and derivative works thereof must be returned or destroyed at
* Sun's request.
*
* Copyright 1993 Sun Microsystems, Inc. All rights reserved.
*
*/
/*
* dtb_utils.h - partial set of dtb_utils.h functions
*/
#ifndef _ABMF_DTB_UTILS_H_
#define _ABMF_DTB_UTILS_H_
#include <ab/util_types.h>
void dtb_save_command(char *argv0);
STRING dtb_get_exe_dir(void);
#endif /* _ABMF_DTB_UTILS_H_ */

View File

@@ -53,7 +53,7 @@
#include <assert.h>
#include <ab_private/util.h>
#include <ab_private/abio.h>
#include "dtb_utils.h"
#include <ab_private/dtb_utils.h>
#include "msg_file.h"
#include "obj_namesP.h"
#include "write_codeP.h"
@@ -69,7 +69,7 @@
#include "instancesP.h"
#include "utils_header_fileP.h"
#include "utils_c_fileP.h"
#include "abmf.h"
#include <ab_private/abmf.h>
#include "msg_cvt.h"
/*************************************************************************