Skip to content

Commit

Permalink
[Git] Initialised the Git repository.
Browse files Browse the repository at this point in the history
da115115 committed Dec 6, 2010
1 parent 376f8fb commit ec86e34
Showing 205 changed files with 100 additions and 100 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
91 changes: 91 additions & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
## airinv top directory
include $(top_srcdir)/Makefile.common

ACLOCAL_AMFLAGS = -I config

AUTOMAKE_OPTIONS = dist-bzip2

if INFO_DOC
INFO_DOC_DIR = info
endif

if HTML_DOC
HTML_DOC_DIR = doc
endif

if RUN_TESTS
TEST_DIR = test
endif

# Maintainance files
MAINTAINERCLEANFILES = Makefile.in aclocal.m4 configure \
config-h.in sic/stamp-h.in autogen.sh bootstrap

# Note 1: the RPM specification file (@PACKAGE@.spec) must not be distributed
# with the rest of the source code. The tar-ball will be used by the packaging
# process, from an external RPM specification file: duplicating it in the
# tar-ball may only confuse things.
# Note 2: Both @PACKAGE@.m4 and @PACKAGE@.pc must not be distributed, as they
# will be generated by the configure script.
EXTRA_DIST =

# Build in these directories:
SUBDIRS = airinv man $(HTML_DOC_DIR) $(TEST_DIR)


# Configuration helpers
bin_SCRIPTS = @PACKAGE@-config

pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = @PACKAGE@.pc

m4datadir = $(datadir)/aclocal
m4data_DATA = @PACKAGE@.m4

# Targets
uninstall-local:
rm -rf $(DESTDIR)$(includedir)/@PACKAGE@

dist-html:
$(MAKE) -C doc dist-html

dist-pdf:
$(MAKE) -C doc dist-pdf

dist-gui:
$(MAKE) -C gui dist-gui


snapshot: snapshot-src snapshot-html snapshot-pdf snapshot-gui


snapshot-src:
$(MAKE) dist distdir=@PACKAGE_TARNAME@-`date +"%Y%m%d"`

snapshot-html:
$(MAKE) -C doc dist-html html_tarname=@PACKAGE_TARNAME@-doc-`date +"%Y%m%d"`

snapshot-pdf:
$(MAKE) -C doc dist-pdf pdf_tarname=@PACKAGE_TARNAME@-pdf-`date +"%Y%m%d"`

snapshot-gui:
$(MAKE) -C gui dist-gui

upload: upload-src upload-html upload-pdf upload-gui

upload-src: dist
@UPLOAD_COMMAND@ @PACKAGE_TARNAME@-@VERSION@.tar.gz \
@PACKAGE_TARNAME@-@VERSION@.tar.bz2

upload-html: dist-html
@UPLOAD_COMMAND@ @PACKAGE_TARNAME@-doc-@VERSION@.tar.gz \
@PACKAGE_TARNAME@-doc-@VERSION@.tar.bz2

upload-pdf: dist-pdf
@UPLOAD_COMMAND@ @PACKAGE_TARNAME@-pdf-@VERSION@.tar.gz \
@PACKAGE_TARNAME@-pdf-@VERSION@.tar.bz2

upload-gui: dist-gui
@UPLOAD_COMMAND@ @PACKAGE_TARNAME@-gui-@VERSION@.tar.gz \
@PACKAGE_TARNAME@-gui-@VERSION@.tar.bz2

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
92 changes: 9 additions & 83 deletions airinv/Makefile.am
Original file line number Diff line number Diff line change
@@ -1,91 +1,17 @@
## airinv top directory
# airinv source directory
include $(top_srcdir)/Makefile.common
include $(srcdir)/core/sources.mk

ACLOCAL_AMFLAGS = -I config
## Source directory

AUTOMAKE_OPTIONS = dist-bzip2
MAINTAINERCLEANFILES = Makefile.in

if INFO_DOC
INFO_DOC_DIR = info
endif
SUBDIRS = basic bom factory command service core config batches server

if HTML_DOC
HTML_DOC_DIR = doc
endif
EXTRA_DIST = config_msvc.h

if RUN_TESTS
TEST_DIR = test
endif

# Maintainance files
MAINTAINERCLEANFILES = Makefile.in aclocal.m4 configure \
config-h.in sic/stamp-h.in autogen.sh bootstrap

# Note 1: the RPM specification file (@PACKAGE@.spec) must not be distributed
# with the rest of the source code. The tar-ball will be used by the packaging
# process, from an external RPM specification file: duplicating it in the
# tar-ball may only confuse things.
# Note 2: Both @PACKAGE@.m4 and @PACKAGE@.pc must not be distributed, as they
# will be generated by the configure script.
EXTRA_DIST =

# Build in these directories:
SUBDIRS = airinv man $(HTML_DOC_DIR) $(TEST_DIR)


# Configuration helpers
bin_SCRIPTS = @PACKAGE@-config

pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = @PACKAGE@.pc

m4datadir = $(datadir)/aclocal
m4data_DATA = @PACKAGE@.m4

# Targets
uninstall-local:
rm -rf $(DESTDIR)$(includedir)/@PACKAGE@

dist-html:
$(MAKE) -C doc dist-html

dist-pdf:
$(MAKE) -C doc dist-pdf

dist-gui:
$(MAKE) -C gui dist-gui


snapshot: snapshot-src snapshot-html snapshot-pdf snapshot-gui


snapshot-src:
$(MAKE) dist distdir=@PACKAGE_TARNAME@-`date +"%Y%m%d"`

snapshot-html:
$(MAKE) -C doc dist-html html_tarname=@PACKAGE_TARNAME@-doc-`date +"%Y%m%d"`

snapshot-pdf:
$(MAKE) -C doc dist-pdf pdf_tarname=@PACKAGE_TARNAME@-pdf-`date +"%Y%m%d"`

snapshot-gui:
$(MAKE) -C gui dist-gui

upload: upload-src upload-html upload-pdf upload-gui

upload-src: dist
@UPLOAD_COMMAND@ @PACKAGE_TARNAME@-@VERSION@.tar.gz \
@PACKAGE_TARNAME@-@VERSION@.tar.bz2

upload-html: dist-html
@UPLOAD_COMMAND@ @PACKAGE_TARNAME@-doc-@VERSION@.tar.gz \
@PACKAGE_TARNAME@-doc-@VERSION@.tar.bz2

upload-pdf: dist-pdf
@UPLOAD_COMMAND@ @PACKAGE_TARNAME@-pdf-@VERSION@.tar.gz \
@PACKAGE_TARNAME@-pdf-@VERSION@.tar.bz2

upload-gui: dist-gui
@UPLOAD_COMMAND@ @PACKAGE_TARNAME@-gui-@VERSION@.tar.gz \
@PACKAGE_TARNAME@-gui-@VERSION@.tar.bz2
# Header files
nobase_pkginclude_HEADERS = $(airinv_service_h_sources)
#nobase_nodist_pkginclude_HEADERS = $(top_builddir)/@PACKAGE@/config.h

17 changes: 0 additions & 17 deletions airinv/airinv/Makefile.am

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit ec86e34

Please sign in to comment.