diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2014-07-23 09:06:59 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2014-07-23 09:06:59 +0200 |
commit | 4ea2cc3bd4a7d9b1c54a9d33e6a1cf82e7c8c21d (patch) | |
tree | d2e54377d14d604356c86862a326f64ae64dadd6 /src/core/mk |
Imported Upstream version 0.18.1upstream/0.18.1
Diffstat (limited to 'src/core/mk')
-rw-r--r-- | src/core/mk/core.mk | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/src/core/mk/core.mk b/src/core/mk/core.mk new file mode 100644 index 0000000..c35c93a --- /dev/null +++ b/src/core/mk/core.mk @@ -0,0 +1,43 @@ + +# UNIT_NAME is the Vala namespace. A file named UNIT_NAME.vala must be in this directory with +# a init() and terminate() function declared in the namespace. +UNIT_NAME := Core + +# UNIT_DIR should match the subdirectory the files are located in. Generally UNIT_NAME in all +# lowercase. The name of this file should be UNIT_DIR.mk. +UNIT_DIR := core + +# All Vala files in the unit should be listed here with no subdirectory prefix. +# +# NOTE: Do *not* include the unit's master file, i.e. UNIT_NAME.vala. +UNIT_FILES := \ + DataCollection.vala \ + DataSet.vala \ + util.vala \ + SourceCollection.vala \ + SourceHoldingTank.vala \ + DatabaseSourceCollection.vala \ + ContainerSourceCollection.vala \ + ViewCollection.vala \ + DataObject.vala \ + Alteration.vala \ + DataSource.vala \ + DataSourceTypes.vala \ + DataView.vala \ + DataViewTypes.vala \ + Tracker.vala \ + SourceInterfaces.vala + +# Any unit this unit relies upon (and should be initialized before it's initialized) should +# be listed here using its Vala namespace. +# +# NOTE: All units are assumed to rely upon the unit-unit. Do not include that here. +UNIT_USES := + +# List any additional files that are used in the build process as a part of this unit that should +# be packaged in the tarball. File names should be relative to the unit's home directory. +UNIT_RC := + +# unitize.mk must be called at the end of each UNIT_DIR.mk file. +include unitize.mk + |