mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-23 11:51:08 +00:00
* Modules/Preferences/EditorFSC: Add new prefs section. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@28057 72102866-910b-0410-8b05-ffd578937521
41 lines
597 B
Makefile
41 lines
597 B
Makefile
#
|
|
# GNUmakefile - EditorFSC preferences
|
|
#
|
|
PACKAGE_NAME = EditorFSC
|
|
include $(GNUSTEP_MAKEFILES)/common.make
|
|
|
|
#
|
|
# Bundle
|
|
#
|
|
BUNDLE_NAME = EditorFSC
|
|
BUNDLE_EXTENSION = .preferences
|
|
EditorFSC_PRINCIPAL_CLASS = PCEditorFSCPrefs
|
|
|
|
|
|
#
|
|
# Additional libraries
|
|
#
|
|
EditorFSC_LIBRARIES_DEPEND_UPON +=
|
|
|
|
#
|
|
# Resource files
|
|
#
|
|
EditorFSC_RESOURCE_FILES= \
|
|
Resources/EditorFSCPrefs.gorm \
|
|
Resources/Info.table
|
|
|
|
#
|
|
# Header files
|
|
#
|
|
EditorFSC_HEADERS= \
|
|
PCEditorFSCPrefs.h
|
|
|
|
#
|
|
# Class files
|
|
#
|
|
EditorFSC_OBJC_FILES= \
|
|
PCEditorFSCPrefs.m
|
|
|
|
include ../../GNUmakefile.bundles
|
|
include $(GNUSTEP_MAKEFILES)/bundle.make
|
|
|