mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-19 18:11:31 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@27352 72102866-910b-0410-8b05-ffd578937521
42 lines
609 B
Makefile
42 lines
609 B
Makefile
#
|
|
# GNUmakefile - LibraryProject
|
|
#
|
|
PACKAGE_NAME = ProjectCenter
|
|
include $(GNUSTEP_MAKEFILES)/common.make
|
|
|
|
#
|
|
# Bundle
|
|
#
|
|
BUNDLE_NAME = Library
|
|
BUNDLE_EXTENSION = .project
|
|
Library_PRINCIPAL_CLASS = PCLibProject
|
|
|
|
|
|
#
|
|
# Additional libraries
|
|
#
|
|
Library_LIBRARIES_DEPEND_UPON +=
|
|
|
|
#
|
|
# Resource files
|
|
#
|
|
Library_RESOURCE_FILES= \
|
|
Resources/PC.project \
|
|
Resources/Version \
|
|
Resources/Inspector.gorm \
|
|
Resources/Info.table
|
|
|
|
#
|
|
# Header files
|
|
#
|
|
Library_HEADERS= \
|
|
PCLibProject.h
|
|
|
|
#
|
|
# Class files
|
|
#
|
|
Library_OBJC_FILES= \
|
|
PCLibProject.m
|
|
|
|
include ../../GNUmakefile.bundles
|
|
include $(GNUSTEP_MAKEFILES)/bundle.make
|