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
46 lines
742 B
Makefile
46 lines
742 B
Makefile
#
|
|
# GNUmakefile - ProjectCenter.parser
|
|
#
|
|
PACKAGE_NAME = ProjectCenter
|
|
include $(GNUSTEP_MAKEFILES)/common.make
|
|
|
|
#
|
|
# Bundle
|
|
#
|
|
BUNDLE_NAME = ProjectCenter
|
|
BUNDLE_EXTENSION = .parser
|
|
ProjectCenter_PRINCIPAL_CLASS = PCParser
|
|
|
|
#
|
|
# Additional libraries
|
|
#
|
|
ProjectCenter_LIBRARIES_DEPEND_UPON +=
|
|
|
|
#
|
|
# Resource files
|
|
#
|
|
ProjectCenter_RESOURCE_FILES= \
|
|
Resources/Info.table
|
|
|
|
#
|
|
# Header files
|
|
#
|
|
ProjectCenter_HEADERS= \
|
|
PCParser.h \
|
|
CodeHandler.h \
|
|
ObjCCommentHandler.h \
|
|
ObjCClassHandler.h \
|
|
ObjCMethodHandler.h
|
|
|
|
#
|
|
# Class files
|
|
#
|
|
ProjectCenter_OBJC_FILES= \
|
|
PCParser.m \
|
|
ObjCCommentHandler.m \
|
|
ObjCClassHandler.m \
|
|
ObjCMethodHandler.m
|
|
|
|
include ../../GNUmakefile.bundles
|
|
include $(GNUSTEP_MAKEFILES)/bundle.make
|
|
|