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@27352 72102866-910b-0410-8b05-ffd578937521
42 lines
590 B
Makefile
42 lines
590 B
Makefile
#
|
|
# GNUmakefile - BundleProject
|
|
#
|
|
PACKAGE_NAME = ProjectCenter
|
|
include $(GNUSTEP_MAKEFILES)/common.make
|
|
|
|
#
|
|
# Bundle
|
|
#
|
|
BUNDLE_NAME = Bundle
|
|
BUNDLE_EXTENSION = .project
|
|
Bundle_PRINCIPAL_CLASS = PCBundleProject
|
|
|
|
|
|
#
|
|
# Additional libraries
|
|
#
|
|
Bundle_LIBRARIES_DEPEND_UPON +=
|
|
|
|
#
|
|
# Resource files
|
|
#
|
|
Bundle_RESOURCE_FILES = \
|
|
Resources/PC.project \
|
|
Resources/Inspector.gorm \
|
|
Resources/Info.table
|
|
|
|
#
|
|
# Header files
|
|
#
|
|
Bundle_HEADERS = \
|
|
PCBundleProject.h
|
|
|
|
#
|
|
# Class files
|
|
#
|
|
|
|
Bundle_OBJC_FILES= \
|
|
PCBundleProject.m
|
|
|
|
include ../../GNUmakefile.bundles
|
|
include $(GNUSTEP_MAKEFILES)/bundle.make
|