2006-12-26 11:00:33 +00:00
|
|
|
#
|
|
|
|
# GNUmakefile - ProjectCenter.editor
|
|
|
|
#
|
2008-12-19 13:13:49 +00:00
|
|
|
PACKAGE_NAME = ProjectCenter
|
2006-12-26 11:00:33 +00:00
|
|
|
include $(GNUSTEP_MAKEFILES)/common.make
|
|
|
|
|
|
|
|
#
|
|
|
|
# Bundle
|
|
|
|
#
|
|
|
|
BUNDLE_NAME = ProjectCenter
|
|
|
|
BUNDLE_EXTENSION = .editor
|
|
|
|
ProjectCenter_PRINCIPAL_CLASS = PCEditor
|
|
|
|
|
|
|
|
#
|
|
|
|
# Additional libraries
|
|
|
|
#
|
|
|
|
ProjectCenter_LIBRARIES_DEPEND_UPON +=
|
|
|
|
|
|
|
|
#
|
|
|
|
# Resource files
|
|
|
|
#
|
|
|
|
ProjectCenter_RESOURCE_FILES= \
|
|
|
|
Resources/Info.table \
|
|
|
|
Resources/C.syntax \
|
|
|
|
Resources/ObjC.syntax \
|
|
|
|
Resources/Plist.syntax \
|
|
|
|
Resources/FileC.tiff \
|
|
|
|
Resources/FileCH.tiff \
|
|
|
|
Resources/FileH.tiff \
|
|
|
|
Resources/FileHH.tiff \
|
|
|
|
Resources/FileM.tiff \
|
2014-08-29 00:25:06 +00:00
|
|
|
Resources/FileMH.tiff \
|
2015-06-12 13:37:44 +00:00
|
|
|
Resources/FileMM.tiff \
|
2014-08-29 00:25:06 +00:00
|
|
|
Resources/LineJumper.gorm
|
2006-12-26 11:00:33 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Header files
|
|
|
|
#
|
|
|
|
ProjectCenter_HEADERS= \
|
|
|
|
PCEditor.h \
|
|
|
|
PCEditorView.h \
|
|
|
|
SyntaxDefinition.h \
|
2014-08-29 00:25:06 +00:00
|
|
|
SyntaxHighlighter.h \
|
|
|
|
LineJumper.h
|
2006-12-26 11:00:33 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Class files
|
|
|
|
#
|
|
|
|
ProjectCenter_OBJC_FILES= \
|
|
|
|
PCEditor.m \
|
|
|
|
PCEditorView.m \
|
|
|
|
TextPattern.m \
|
|
|
|
SyntaxDefinition.m \
|
2014-08-29 00:25:06 +00:00
|
|
|
SyntaxHighlighter.m \
|
|
|
|
LineJumper.m
|
2006-12-26 11:00:33 +00:00
|
|
|
|
|
|
|
include ../../GNUmakefile.bundles
|
|
|
|
include $(GNUSTEP_MAKEFILES)/bundle.make
|