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 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
|
#
# 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.3.0
PACKAGE_NAME = XCode
FRAMEWORK_NAME = XCode
#
# Resource files
#
XCode_RESOURCE_FILES = Resources/Framework-mapping.plist \
Resources/language-codes.plist \
Resources/create-dummy-class.sh \
#
# Header files
#
XCode_HEADER_FILES = \
GSXCBuildDatabase.h \
GSXCBuildContext.h \
GSXCCommon.h \
NSArray+Additions.h \
NSString+PBXAdditions.h \
PBXBuildPhase.h \
PBXTarget.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 \
PBXFileSystemSynchronizedRootGroup.h \
PBXGroup.h \
PBXHeadersBuildPhase.h \
PBXNativeTarget.h \
PBXProject.h \
PBXReferenceProxy.h \
PBXResourcesBuildPhase.h \
PBXRezBuildPhase.h \
PBXShellScriptBuildPhase.h \
PBXSourcesBuildPhase.h \
PBXTargetDependency.h \
PBXVariantGroup.h \
XCAbstractDelegate.h \
XCBuildConfiguration.h \
XCConfigurationList.h \
XCVersionGroup.h \
XCWorkspace.h \
XCFileRef.h \
XCWorkspaceParser.h \
PBXLegacyTarget.h \
GSXCBuildOperation.h \
GSXCBuildDelegate.h \
GSXCGenerator.h \
NSObject+KeyExtraction.h \
XCode.h \
#
# Class files
#
XCode_OBJC_FILES = \
GSXCBuildDatabase.m \
GSXCBuildContext.m \
NSArray+Additions.m \
NSString+PBXAdditions.m \
PBXBuildPhase.m \
PBXTarget.m \
PBXApplicationTarget.m \
PBXAggregateTarget.m \
PBXBuildFile.m \
PBXBuildRule.m \
PBXBundleTarget.m \
PBXCoder.m \
PBXCommon.m \
PBXContainerItemProxy.m \
PBXContainer.m \
PBXCopyFilesBuildPhase.m \
PBXFileReference.m \
PBXFileSystemSynchronizedRootGroup.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 \
XCAbstractDelegate.m \
XCBuildConfiguration.m \
XCConfigurationList.m \
XCVersionGroup.m \
XCWorkspace.m \
XCFileRef.m \
XCWorkspaceParser.m \
PBXLegacyTarget.m \
GSXCBuildOperation.m \
GSXCGenerator.m \
xcsystem.m \
NSObject+KeyExtraction.m \
LIBRARIES_DEPEND_UPON = $(FND_LIBS) $(OBJC_LIBS)
#
# Makefiles
#
-include GNUmakefile.preamble
include $(GNUSTEP_MAKEFILES)/aggregate.make
include $(GNUSTEP_MAKEFILES)/framework.make
-include GNUmakefile.postamble
|