-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Git] Initialised the Git repository.
Showing
205 changed files
with
100 additions
and
100 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file was deleted.
Oops, something went wrong.
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.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.