From 4ea2cc3bd4a7d9b1c54a9d33e6a1cf82e7c8c21d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Wed, 23 Jul 2014 09:06:59 +0200 Subject: Imported Upstream version 0.18.1 --- src/library/mk/library.mk | 54 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 src/library/mk/library.mk (limited to 'src/library/mk') diff --git a/src/library/mk/library.mk b/src/library/mk/library.mk new file mode 100644 index 0000000..b4ab790 --- /dev/null +++ b/src/library/mk/library.mk @@ -0,0 +1,54 @@ + +# 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 := Library + +# 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 := library + +# 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 := \ + LibraryWindow.vala \ + Branch.vala \ + TrashBranch.vala \ + OfflineBranch.vala \ + FlaggedBranch.vala \ + LastImportBranch.vala \ + ImportQueueBranch.vala \ + FlaggedPage.vala \ + ImportQueuePage.vala \ + LastImportPage.vala \ + OfflinePage.vala \ + TrashPage.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 := \ + Util \ + Threads \ + Db \ + Plugins \ + Slideshow \ + Photos \ + Publishing \ + Core \ + Sidebar \ + Events \ + Tags \ + Camera \ + Searches \ + DataImports \ + Folders + +# 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 + -- cgit v1.2.3