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 /units.mk |
Imported Upstream version 0.18.1upstream/0.18.1
Diffstat (limited to 'units.mk')
-rw-r--r-- | units.mk | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/units.mk b/units.mk new file mode 100644 index 0000000..a03ec19 --- /dev/null +++ b/units.mk @@ -0,0 +1,35 @@ + +# List of all units in the system. Use directory name rather than namespace. +# +# This list is primarily used at compile time to build the executable. +# +# NOTE: The unit-unit must be first. Units may follow in any order thereafter. +# +# NOTE: Be sure to add the unit to the appropriate APP_UNITS .mk file. +UNITS = \ + unit \ + util \ + threads \ + db \ + editing_tools \ + plugins \ + slideshow \ + photos \ + publishing \ + library \ + direct \ + core \ + sidebar \ + events \ + tags \ + camera \ + searches \ + config \ + data_imports \ + folders + +# Name(s) of units that represent application entry points. These units will have init and +# termination entry points generated: Name.unitize_init() and Name.unitize_terminate(). These +# methods should be called in main(). They will initialize the named unit and all is prerequisite +# units, thereby initializing the entire application. +APP_UNITS = Library Direct |