-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGNUmakefile
66 lines (66 loc) · 1.87 KB
/
GNUmakefile
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
####################################################################################################################################
#
# GNUmakefile
#
# This file is an part of Mondo Preferences.
#
# Copyright (C) 2020 Mondo Megagames.
# Author: Jamie Ramone <[email protected]>
# Date: 18-5-20
#
# This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along with this program. If not, see
# <http://www.gnu.org/licenses/>
#
####################################################################################################################################
include $(GNUSTEP_MAKEFILES)/common.make
#
# Application
#
VERSION = 0.9
PACKAGE_NAME = Preferences
APP_NAME = Preferences
GNUSTEP_INSTALLATION_DOMAIN = SYSTEM
COMPRESSION_PROGRAM = xz -9
COMPRESSION_EXT = .xz
#
# Subprojects
#
SUBPROJECTS = \
PreferencePane \
AppIconView \
AppIcons/* \
Modules/Keyboard \
Modules/UnixExpert \
Modules/Password \
Modules/Time \
Modules/Menu \
Modules/Display \
Modules/Localization \
Modules/Fonts \
Modules/Mouse \
Modules/Sound
#
# Resource files
#
Preferences_RESOURCE_FILES = $(wildcard Resources/*[^~].*)
#
# Header files
#
Preferences_HEADER_FILES = $(wildcard *.h)
#
# Class files
#
Preferences_OBJC_FILES = $(wildcard *.m)
#
# Makefiles
#
-include GNUmakefile.preamble
include $(GNUSTEP_MAKEFILES)/aggregate.make
include $(GNUSTEP_MAKEFILES)/application.make
-include GNUmakefile.postamble