-
Notifications
You must be signed in to change notification settings - Fork 1
/
GNUmakefile
48 lines (36 loc) · 907 Bytes
/
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
#
# GNUmakefile - Font Manager
#
# Copyright 2007 Isaiah Beerbower.
#
# Author: Isaiah Beerbower
# Created: 05/31/07
# License: Modified BSD license (see file COPYING)
#
include $(GNUSTEP_MAKEFILES)/common.make
APP_NAME = FontManager
FontManager_OBJC_FILES = \
PQMain.m \
PQCharacterView.m \
PQCharactersController.m \
PQCharactersView.m \
PQController.m \
PQFontDocument.m \
PQFontFamily.m \
PQFontManager.m \
PQFontSampleView.m \
PQSampleController.m
FontManager_LANGUAGES = \
English
FontManager_LOCALIZED_RESOURCE_FILES = \
MainMenu.gorm \
FontDocument.gorm \
Localizable.strings
FontManager_RESOURCE_FILES = \
Resources/FontManager.tif \
Resources/Document-Font.tif \
Resources/UnicodeBlockNames.plist \
Resources/UnicodeBlocks.plist
FontManager_MAIN_MODEL_FILE = MainMenu.gorm
include $(GNUSTEP_MAKEFILES)/application.make
-include ../../../etoile.make