Hello world
This commit is contained in:
parent
95d43fe6b0
commit
65b4754e32
|
@ -1,5 +1,5 @@
|
||||||
INCLUDES = -I$(top_srcdir)/../mbk/src \
|
CFLAGS = @CFLAGS@ \
|
||||||
-I$(top_srcdir)/../aut/src
|
-DALLIANCE_TOP=\"${ALLIANCE_TOP}\"
|
||||||
lib_LIBRARIES = libAbl.a
|
lib_LIBRARIES = libAbl.a
|
||||||
include_HEADERS = abl.h
|
include_HEADERS = abl.h
|
||||||
libAbl_a_SOURCES = abldel.h ablflat.h abloptim.h ablunflat.h \
|
libAbl_a_SOURCES = abldel.h ablflat.h abloptim.h ablunflat.h \
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
INCLUDES = -I$(top_srcdir)/../mbk/src
|
CFLAGS = @CFLAGS@ \
|
||||||
|
-DALLIANCE_TOP=\"${ALLIANCE_TOP}\"
|
||||||
lib_LIBRARIES = libAut.a
|
lib_LIBRARIES = libAut.a
|
||||||
include_HEADERS = aut.h
|
include_HEADERS = aut.h
|
||||||
libAut_a_SOURCES = autenv.h autfree.h authash2.h autsort.h \
|
libAut_a_SOURCES = autenv.h autfree.h authash2.h autsort.h \
|
||||||
|
|
|
@ -25,7 +25,7 @@ dnl Almost ten years since I wrote this stuff, I just can't
|
||||||
dnl believe it
|
dnl believe it
|
||||||
dnl Date : 01/02/2002
|
dnl Date : 01/02/2002
|
||||||
dnl Author : Frederic Petrot <Frederic.Petrot@lip6.fr>
|
dnl Author : Frederic Petrot <Frederic.Petrot@lip6.fr>
|
||||||
dnl $Id: configure.in,v 1.2 2002/03/15 16:17:13 fred Exp $
|
dnl $Id: configure.in,v 1.3 2002/03/18 11:13:59 ludo Exp $
|
||||||
dnl
|
dnl
|
||||||
dnl
|
dnl
|
||||||
AC_INIT(./mbk)
|
AC_INIT(./mbk)
|
||||||
|
@ -38,7 +38,7 @@ changequote(,)dnl
|
||||||
# compiled and installed prior to the tools
|
# compiled and installed prior to the tools
|
||||||
# Add in the following variable the library name (or part of it, as a
|
# Add in the following variable the library name (or part of it, as a
|
||||||
# match is performed) that you what to compile prior to anything
|
# match is performed) that you what to compile prior to anything
|
||||||
libraries="\<mbk aut \<rds"
|
libraries="\<mbk aut abl \<rds"
|
||||||
dirs=`\ls -l $srcdir | grep '^d' | awk '{print $NF}'`
|
dirs=`\ls -l $srcdir | grep '^d' | awk '{print $NF}'`
|
||||||
for l in $libraries ; do
|
for l in $libraries ; do
|
||||||
for i in $dirs ; do
|
for i in $dirs ; do
|
||||||
|
|
|
@ -60,17 +60,18 @@ POST_UNINSTALL = :
|
||||||
CC = @CC@
|
CC = @CC@
|
||||||
INCLUDES = @INCLUDES@
|
INCLUDES = @INCLUDES@
|
||||||
LDFLAGS = @LDFLAGS@
|
LDFLAGS = @LDFLAGS@
|
||||||
|
MAKEINFO = @MAKEINFO@
|
||||||
|
PACKAGE = @PACKAGE@
|
||||||
RANLIB = @RANLIB@
|
RANLIB = @RANLIB@
|
||||||
|
VERSION = @VERSION@
|
||||||
|
|
||||||
SUBDIRS = src man3
|
SUBDIRS = src man3
|
||||||
|
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||||
mkinstalldirs = $(SHELL) $(top_srcdir)/../mkinstalldirs
|
mkinstalldirs = $(SHELL) $(top_srcdir)/../mkinstalldirs
|
||||||
CONFIG_CLEAN_FILES =
|
CONFIG_CLEAN_FILES =
|
||||||
DIST_COMMON = Makefile.am Makefile.in configure configure.in
|
DIST_COMMON = Makefile.am Makefile.in aclocal.m4 configure configure.in
|
||||||
|
|
||||||
|
|
||||||
PACKAGE = @PACKAGE@
|
|
||||||
VERSION = @VERSION@
|
|
||||||
|
|
||||||
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
|
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
|
||||||
|
|
||||||
TAR = gtar
|
TAR = gtar
|
||||||
|
@ -84,6 +85,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
|
||||||
cd $(top_builddir) \
|
cd $(top_builddir) \
|
||||||
&& CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
&& CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
||||||
|
|
||||||
|
$(ACLOCAL_M4): configure.in
|
||||||
|
cd $(srcdir) && $(ACLOCAL)
|
||||||
|
|
||||||
config.status: $(srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
config.status: $(srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||||
$(SHELL) ./config.status --recheck
|
$(SHELL) ./config.status --recheck
|
||||||
|
@ -225,7 +228,7 @@ distdir: $(DISTFILES)
|
||||||
@for file in $(DISTFILES); do \
|
@for file in $(DISTFILES); do \
|
||||||
d=$(srcdir); \
|
d=$(srcdir); \
|
||||||
if test -d $$d/$$file; then \
|
if test -d $$d/$$file; then \
|
||||||
cp -pr $$/$$file $(distdir)/$$file; \
|
cp -pr $$d/$$file $(distdir)/$$file; \
|
||||||
else \
|
else \
|
||||||
test -f $(distdir)/$$file \
|
test -f $(distdir)/$$file \
|
||||||
|| ln $$d/$$file $(distdir)/$$file 2> /dev/null \
|
|| ln $$d/$$file $(distdir)/$$file 2> /dev/null \
|
||||||
|
|
|
@ -60,7 +60,10 @@ POST_UNINSTALL = :
|
||||||
CC = @CC@
|
CC = @CC@
|
||||||
INCLUDES = @INCLUDES@
|
INCLUDES = @INCLUDES@
|
||||||
LDFLAGS = @LDFLAGS@
|
LDFLAGS = @LDFLAGS@
|
||||||
|
MAKEINFO = @MAKEINFO@
|
||||||
|
PACKAGE = @PACKAGE@
|
||||||
RANLIB = @RANLIB@
|
RANLIB = @RANLIB@
|
||||||
|
VERSION = @VERSION@
|
||||||
|
|
||||||
man_MANS = addrdsfig.3 addrdsfigrec.3 addrdsins.3 addrdsinsrec.3 addrdsrecwindow.3 allocrdsfig.3 allocrdsins.3 allocrdsrec.3 allocrdsrecwin.3 allocrdswin.3 allocrdswindow.3 allocrdswinrec.3 buildrdswindow.3 conmbkrds.3 delrdsfig.3 delrdsfigrec.3 delrdsins.3 delrdsinsrec.3 delrdsrecwindow.3 destroyrdswindow.3 figmbkrds.3 freerdsfig.3 freerdsins.3 freerdsrec.3 getrdsmodellist.3 insconmbkrds.3 insmbkrds.3 insrefmbkrds.3 inssegmbkrds.3 instanceface.3 insviambkrds.3 loadrdsfig.3 loadrdsparam.3 modelmbkrds.3 rdsalloc.3 rdsenv.3 rdsfree.3 refmbkrds.3 roundrdsrec.3 saverdsfig.3 searchrdsfig.3 segmbkrds.3 viambkrds.3 viewrdsfig.3 viewrdsins.3 viewrdsparam.3 viewrdsrec.3 viewrdswindow.3 viewrfmcon.3 viewrfmfig.3 viewrfmins.3 viewrfmrec.3 viewrfmref.3 viewrfmseg.3 viewrfmvia.3
|
man_MANS = addrdsfig.3 addrdsfigrec.3 addrdsins.3 addrdsinsrec.3 addrdsrecwindow.3 allocrdsfig.3 allocrdsins.3 allocrdsrec.3 allocrdsrecwin.3 allocrdswin.3 allocrdswindow.3 allocrdswinrec.3 buildrdswindow.3 conmbkrds.3 delrdsfig.3 delrdsfigrec.3 delrdsins.3 delrdsinsrec.3 delrdsrecwindow.3 destroyrdswindow.3 figmbkrds.3 freerdsfig.3 freerdsins.3 freerdsrec.3 getrdsmodellist.3 insconmbkrds.3 insmbkrds.3 insrefmbkrds.3 inssegmbkrds.3 instanceface.3 insviambkrds.3 loadrdsfig.3 loadrdsparam.3 modelmbkrds.3 rdsalloc.3 rdsenv.3 rdsfree.3 refmbkrds.3 roundrdsrec.3 saverdsfig.3 searchrdsfig.3 segmbkrds.3 viambkrds.3 viewrdsfig.3 viewrdsins.3 viewrdsparam.3 viewrdsrec.3 viewrdswindow.3 viewrfmcon.3 viewrfmfig.3 viewrfmins.3 viewrfmrec.3 viewrfmref.3 viewrfmseg.3 viewrfmvia.3
|
||||||
|
|
||||||
|
@ -73,9 +76,6 @@ NROFF = nroff
|
||||||
DIST_COMMON = Makefile.am Makefile.in
|
DIST_COMMON = Makefile.am Makefile.in
|
||||||
|
|
||||||
|
|
||||||
PACKAGE = @PACKAGE@
|
|
||||||
VERSION = @VERSION@
|
|
||||||
|
|
||||||
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
|
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
|
||||||
|
|
||||||
TAR = gtar
|
TAR = gtar
|
||||||
|
@ -145,7 +145,7 @@ distdir: $(DISTFILES)
|
||||||
@for file in $(DISTFILES); do \
|
@for file in $(DISTFILES); do \
|
||||||
d=$(srcdir); \
|
d=$(srcdir); \
|
||||||
if test -d $$d/$$file; then \
|
if test -d $$d/$$file; then \
|
||||||
cp -pr $$/$$file $(distdir)/$$file; \
|
cp -pr $$d/$$file $(distdir)/$$file; \
|
||||||
else \
|
else \
|
||||||
test -f $(distdir)/$$file \
|
test -f $(distdir)/$$file \
|
||||||
|| ln $$d/$$file $(distdir)/$$file 2> /dev/null \
|
|| ln $$d/$$file $(distdir)/$$file 2> /dev/null \
|
||||||
|
|
|
@ -60,7 +60,10 @@ POST_UNINSTALL = :
|
||||||
CC = @CC@
|
CC = @CC@
|
||||||
INCLUDES = @INCLUDES@
|
INCLUDES = @INCLUDES@
|
||||||
LDFLAGS = @LDFLAGS@
|
LDFLAGS = @LDFLAGS@
|
||||||
|
MAKEINFO = @MAKEINFO@
|
||||||
|
PACKAGE = @PACKAGE@
|
||||||
RANLIB = @RANLIB@
|
RANLIB = @RANLIB@
|
||||||
|
VERSION = @VERSION@
|
||||||
|
|
||||||
lib_LIBRARIES = libRds.a libRut.a libRfm.a libRpr.a libRwi.a libRtl.a
|
lib_LIBRARIES = libRds.a libRut.a libRfm.a libRpr.a libRwi.a libRtl.a
|
||||||
|
|
||||||
|
@ -107,9 +110,6 @@ HEADERS = $(include_HEADERS)
|
||||||
DIST_COMMON = Makefile.am Makefile.in
|
DIST_COMMON = Makefile.am Makefile.in
|
||||||
|
|
||||||
|
|
||||||
PACKAGE = @PACKAGE@
|
|
||||||
VERSION = @VERSION@
|
|
||||||
|
|
||||||
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
|
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
|
||||||
|
|
||||||
TAR = gtar
|
TAR = gtar
|
||||||
|
@ -271,7 +271,7 @@ distdir: $(DISTFILES)
|
||||||
@for file in $(DISTFILES); do \
|
@for file in $(DISTFILES); do \
|
||||||
d=$(srcdir); \
|
d=$(srcdir); \
|
||||||
if test -d $$d/$$file; then \
|
if test -d $$d/$$file; then \
|
||||||
cp -pr $$/$$file $(distdir)/$$file; \
|
cp -pr $$d/$$file $(distdir)/$$file; \
|
||||||
else \
|
else \
|
||||||
test -f $(distdir)/$$file \
|
test -f $(distdir)/$$file \
|
||||||
|| ln $$d/$$file $(distdir)/$$file 2> /dev/null \
|
|| ln $$d/$$file $(distdir)/$$file 2> /dev/null \
|
||||||
|
|
Loading…
Reference in New Issue