forked from gnustep/libs-xcode
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGNUmakefile
106 lines (100 loc) · 2.03 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
#
# GNUmakefile - Generated by ProjectCenter
#
ifeq ($(GNUSTEP_MAKEFILES),)
GNUSTEP_MAKEFILES := $(shell gnustep-config --variable=GNUSTEP_MAKEFILES 2>/dev/null)
endif
ifeq ($(GNUSTEP_MAKEFILES),)
$(error You need to set GNUSTEP_MAKEFILES before compiling!)
endif
include $(GNUSTEP_MAKEFILES)/common.make
#
# Framework
#
VERSION = 0.1
PACKAGE_NAME = XCode
FRAMEWORK_NAME = XCode
#
# Resource files
#
XCode_RESOURCE_FILES =
#
# Header files
#
XCode_HEADER_FILES = \
GSXCBuildContext.h \
GSXCCommon.h \
NSArray+Additions.h \
NSString+PBXAdditions.h \
PBXAbstractBuildPhase.h \
PBXAbstractTarget.h \
PBXApplicationTarget.h \
PBXAggregateTarget.h \
PBXBuildFile.h \
PBXBuildRule.h \
PBXBundleTarget.h \
PBXCoder.h \
PBXCommon.h \
PBXContainer.h \
PBXContainerItemProxy.h \
PBXCopyFilesBuildPhase.h \
PBXFileReference.h \
PBXFrameworksBuildPhase.h \
PBXFrameworkTarget.h \
PBXGroup.h \
PBXHeadersBuildPhase.h \
PBXNativeTarget.h \
PBXProject.h \
PBXReferenceProxy.h \
PBXResourcesBuildPhase.h \
PBXRezBuildPhase.h \
PBXShellScriptBuildPhase.h \
PBXSourcesBuildPhase.h \
PBXTargetDependency.h \
PBXVariantGroup.h \
XCBuildConfiguration.h \
XCConfigurationList.h \
XCVersionGroup.h
#
# Class files
#
XCode_OBJC_FILES = \
GSXCBuildContext.m \
NSArray+Additions.m \
NSString+PBXAdditions.m \
PBXAbstractBuildPhase.m \
PBXAbstractTarget.m \
PBXApplicationTarget.m \
PBXAggregateTarget.m \
PBXBuildFile.m \
PBXBuildRule.m \
PBXBundleTarget.m \
PBXCoder.m \
PBXCommon.m \
PBXContainerItemProxy.m \
PBXContainer.m \
PBXCopyFilesBuildPhase.m \
PBXFileReference.m \
PBXFrameworksBuildPhase.m \
PBXFrameworkTarget.m \
PBXGroup.m \
PBXHeadersBuildPhase.m \
PBXNativeTarget.m \
PBXProject.m \
PBXReferenceProxy.m \
PBXResourcesBuildPhase.m \
PBXRezBuildPhase.m \
PBXShellScriptBuildPhase.m \
PBXSourcesBuildPhase.m \
PBXTargetDependency.m \
PBXVariantGroup.m \
XCBuildConfiguration.m \
XCConfigurationList.m \
XCVersionGroup.m
#
# Makefiles
#
-include GNUmakefile.preamble
include $(GNUSTEP_MAKEFILES)/aggregate.make
include $(GNUSTEP_MAKEFILES)/framework.make
-include GNUmakefile.postamble