mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-23 11:51:08 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@27991 72102866-910b-0410-8b05-ffd578937521
41 lines
561 B
Makefile
41 lines
561 B
Makefile
#
|
|
# GNUmakefile - Saving preferences
|
|
#
|
|
PACKAGE_NAME = Saving
|
|
include $(GNUSTEP_MAKEFILES)/common.make
|
|
|
|
#
|
|
# Bundle
|
|
#
|
|
BUNDLE_NAME = Saving
|
|
BUNDLE_EXTENSION = .preferences
|
|
Saving_PRINCIPAL_CLASS = PCSavingPrefs
|
|
|
|
|
|
#
|
|
# Additional libraries
|
|
#
|
|
Saving_LIBRARIES_DEPEND_UPON +=
|
|
|
|
#
|
|
# Resource files
|
|
#
|
|
Saving_RESOURCE_FILES= \
|
|
Resources/SavingPrefs.gorm \
|
|
Resources/Info.table
|
|
|
|
#
|
|
# Header files
|
|
#
|
|
Saving_HEADERS= \
|
|
PCSavingPrefs.h
|
|
|
|
#
|
|
# Class files
|
|
#
|
|
Saving_OBJC_FILES= \
|
|
PCSavingPrefs.m
|
|
|
|
include ../../GNUmakefile.bundles
|
|
include $(GNUSTEP_MAKEFILES)/bundle.make
|
|
|