~ubuntu-branches/ubuntu/quantal/shotwell/quantal

« back to all changes in this revision

Viewing changes to src/alien_db/f_spot/mk/f_spot.mk

  • Committer: Package Import Robot
  • Author(s): Robert Ancell
  • Date: 2012-02-21 13:52:58 UTC
  • mto: This revision was merged to the branch mainline in revision 47.
  • Revision ID: package-import@ubuntu.com-20120221135258-ao9jiib5qicomq7q
Tags: upstream-0.11.92
ImportĀ upstreamĀ versionĀ 0.11.92

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
# UNIT_NAME is the Vala namespace.  A file named UNIT_NAME.vala must be in this directory with
3
 
# a init() and terminate() function declared in the namespace.
4
 
UNIT_NAME := AlienDb.FSpot
5
 
 
6
 
# UNIT_DIR should match the subdirectory the files are located in.  Generally UNIT_NAME in all
7
 
# lowercase.  The name of this file should be UNIT_DIR.mk.
8
 
UNIT_DIR := alien_db/f_spot
9
 
 
10
 
# All Vala files in the unit should be listed here with no subdirectory prefix.
11
 
#
12
 
# NOTE: Do *not* include the unit's master file, i.e. UNIT_NAME.vala.
13
 
UNIT_FILES := \
14
 
        FSpotDatabaseDriver.vala \
15
 
        FSpotDatabase.vala \
16
 
        FSpotDatabaseBehavior.vala \
17
 
        FSpotDatabasePhoto.vala \
18
 
        FSpotDatabaseTag.vala \
19
 
        FSpotDatabaseEvent.vala \
20
 
        FSpotDatabaseTable.vala \
21
 
        FSpotTableBehavior.vala \
22
 
        FSpotMetaTable.vala \
23
 
        FSpotPhotosTable.vala \
24
 
        FSpotPhotoVersionsTable.vala \
25
 
        FSpotTagsTable.vala \
26
 
        FSpotPhotoTagsTable.vala \
27
 
        FSpotRollsTable.vala
28
 
 
29
 
# Any unit this unit relies upon (and should be initialized before it's initialized) should
30
 
# be listed here using its Vala namespace.
31
 
#
32
 
# NOTE: All units are assumed to rely upon the unit-unit.  Do not include that here.
33
 
UNIT_USES := \
34
 
    AlienDb
35
 
 
36
 
# List any additional files that are used in the build process as a part of this unit that should
37
 
# be packaged in the tarball.  File names should be relative to the unit's home directory.
38
 
UNIT_RC :=
39
 
 
40
 
# unitize.mk must be called at the end of each UNIT_DIR.mk file.
41
 
include unitize.mk
42