mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-22 19:31:56 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@19516 72102866-910b-0410-8b05-ffd578937521
47 lines
678 B
Makefile
47 lines
678 B
Makefile
#
|
|
# GNUmakefile
|
|
#
|
|
include $(GNUSTEP_MAKEFILES)/common.make
|
|
|
|
|
|
#
|
|
# Bundle
|
|
#
|
|
PACKAGE_NAME = AggregateProject
|
|
BUNDLE_NAME = AggregateProject
|
|
AggregateProject_PRINCIPAL_CLASS = PCAggregateProj
|
|
|
|
#
|
|
# Additional libraries
|
|
#
|
|
AggregateProject_LIBRARIES_DEPEND_UPON += -lProjectCenter
|
|
|
|
#
|
|
# Resource files
|
|
#
|
|
AggregateProject_RESOURCE_FILES= \
|
|
Resources/PC.project \
|
|
Resources/Inspector.gorm
|
|
|
|
#
|
|
# Header files
|
|
#
|
|
AggregateProject_HEADERS= \
|
|
PCAggregateProj.h \
|
|
PCAggregateProject.h
|
|
|
|
#
|
|
# Class files
|
|
#
|
|
AggregateProject_OBJC_FILES= \
|
|
PCAggregateProj.m \
|
|
PCAggregateProject.m
|
|
|
|
#
|
|
# C files
|
|
#
|
|
|
|
AggregateProject_C_FILES=
|
|
|
|
include ../GNUmakefile.bundles
|
|
include $(GNUSTEP_MAKEFILES)/bundle.make
|