-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGNUmakefile
More file actions
50 lines (35 loc) · 971 Bytes
/
GNUmakefile
File metadata and controls
50 lines (35 loc) · 971 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# Install into the system root by default
GNUSTEP_INSTALLATION_DOMAIN=LOCAL
include $(GNUSTEP_MAKEFILES)/common.make
# The application to be compiled
APP_NAME=VolumeManager
VolumeManager_APPLICATION_ICON=AppIcon.tiff
#
# Additional libraries
#
VolumeManager_GUI_LIBS = -lDBusKit -lTrayIconKit
#
# Resource files
#
VolumeManager_RESOURCE_FILES = \
Images/*.tiff
VolumeManager_LANGUAGES = English German
VolumeManager_LOCALIZED_RESOURCE_FILES = \
RemovableMedia.gorm \
Localizable.strings
# The Objective-C source files to be compiled
VolumeManager_OBJC_FILES = main.m \
ConnectionManager.m \
ConnectionManager+VMSProtocol.m \
VolumeManager.m \
VolumeManager+Private.m \
Volume.m \
HalHandler.m \
VolumeWindowController.m \
VmIconController.m \
Volume+Pmount.m
-include GNUmakefile.preamble
-include GNUmakefile.local
include $(GNUSTEP_MAKEFILES)/aggregate.make
include $(GNUSTEP_MAKEFILES)/application.make
-include GNUmakefile.postamble