mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-25 04:31:12 +00:00
55 lines
949 B
Text
55 lines
949 B
Text
|
#
|
||
|
# GNUmakefile - ProjectCenter.editor
|
||
|
#
|
||
|
|
||
|
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 \
|
||
|
Resources/FileMH.tiff
|
||
|
|
||
|
#
|
||
|
# Header files
|
||
|
#
|
||
|
ProjectCenter_HEADERS= \
|
||
|
PCEditor.h \
|
||
|
PCEditorView.h \
|
||
|
SyntaxDefinition.h \
|
||
|
SyntaxHighlighter.h
|
||
|
|
||
|
#
|
||
|
# Class files
|
||
|
#
|
||
|
ProjectCenter_OBJC_FILES= \
|
||
|
PCEditor.m \
|
||
|
PCEditorView.m \
|
||
|
TextPattern.m \
|
||
|
SyntaxDefinition.m \
|
||
|
SyntaxHighlighter.m
|
||
|
|
||
|
include ../../GNUmakefile.bundles
|
||
|
include $(GNUSTEP_MAKEFILES)/bundle.make
|