mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-19 10:00:48 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@38625 72102866-910b-0410-8b05-ffd578937521
58 lines
1 KiB
Makefile
58 lines
1 KiB
Makefile
#
|
|
# GNUmakefile - ProjectCenter.editor
|
|
#
|
|
PACKAGE_NAME = ProjectCenter
|
|
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 \
|
|
Resources/FileMM.tiff \
|
|
Resources/LineJumper.gorm
|
|
|
|
#
|
|
# Header files
|
|
#
|
|
ProjectCenter_HEADERS= \
|
|
PCEditor.h \
|
|
PCEditorView.h \
|
|
SyntaxDefinition.h \
|
|
SyntaxHighlighter.h \
|
|
LineJumper.h
|
|
|
|
#
|
|
# Class files
|
|
#
|
|
ProjectCenter_OBJC_FILES= \
|
|
PCEditor.m \
|
|
PCEditorView.m \
|
|
TextPattern.m \
|
|
SyntaxDefinition.m \
|
|
SyntaxHighlighter.m \
|
|
LineJumper.m
|
|
|
|
include ../../GNUmakefile.bundles
|
|
include $(GNUSTEP_MAKEFILES)/bundle.make
|