IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 3017


Ignore:
Timestamp:
Jan 16, 2005, 12:37:59 AM (22 years ago)
Author:
jhoblitt
Message:

move sources to ./src

Location:
trunk/Nebulous/nebclient
Files:
8 added
7 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Nebulous/nebclient/Makefile.am

    r2958 r3017  
    11# Copyright (C) 2005  Joshua Hoblitt
    22#
    3 # $Id: Makefile.am,v 1.4 2005-01-11 21:22:43 jhoblitt Exp $
     3# $Id: Makefile.am,v 1.5 2005-01-16 10:37:59 jhoblitt Exp $
    44
    5 include_HEADERS=idataclient.h
    6 lib_LTLIBRARIES = libidataclient.la
    7 libidataclient_la_SOURCES =\
    8     idataclient.h\
    9     idataclient.c\
    10     xmalloc.h\
    11     xmalloc.c\
    12     SOAP.nsmap\
    13     soapC.c\
    14     soapClient.c\
    15     soapH.h\
    16     soapStub.h\
    17     stdsoap2.c\
    18     stdsoap2.h
     5SUBDIRS = src
  • trunk/Nebulous/nebclient/bootstrap

    r2952 r3017  
    11#!/bin/sh
    22
    3 wsdl2h -c idata.wsdl
    4 soapcpp2 -c idata.h
    5 rm -f *.xml
     3wsdl2h -o src/idata.h -c idata.wsdl
     4soapcpp2 -d src -c idata.h
     5rm -f src/*.xml
    66
    77aclocal \
    8 && automake --gnu --add-missing \
     8&& automake --gnu --add-missing --copy \
     9&& autoheader \
    910&& autoconf
  • trunk/Nebulous/nebclient/configure.ac

    r2948 r3017  
    11dnl Copyright (C) 2005  Joshua Hoblitt
    22dnl
    3 dnl $Id: configure.ac,v 1.1 2005-01-11 01:08:04 jhoblitt Exp $
     3dnl $Id: configure.ac,v 1.2 2005-01-16 10:37:59 jhoblitt Exp $
    44
    55dnl Process this file with autoconf to produce a configure script.
    6 AC_INIT(idataclient, 0.01)
    7 AC_REVISION($Revision: 1.1 $)
     6AC_INIT([idataclient], [0.0.1], [jhoblitt@cpan.org])
     7AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)
     8AC_REVISION([$Revision: 1.2 $])
    89
    9 AM_INIT_AUTOMAKE(idataclient, 0.01)
     10dnl generate config.h
     11AM_CONFIG_HEADER(config.h)
    1012
    1113dnl Checks for programs.
     
    3739AC_SUBST(LIBTOOL_DEPS)
    3840
    39 AC_OUTPUT(Makefile)
     41dnl AC_OUTPUT(Makefile)
     42AC_OUTPUT(Makefile src/Makefile)
Note: See TracChangeset for help on using the changeset viewer.