mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-14 15:41:34 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/branches/ptyview_with_pipes@39556 72102866-910b-0410-8b05-ffd578937521
48 lines
840 B
Makefile
48 lines
840 B
Makefile
#
|
|
# GNUmakefile
|
|
#
|
|
# Here are the several types of modules (bundles):
|
|
#
|
|
# Project types:
|
|
# - Aggregate
|
|
# - Application
|
|
# - Bundle
|
|
# - Framework
|
|
# - Library
|
|
# - ResourceSet
|
|
# - Tool
|
|
# Editors:
|
|
# - ProjectCenter -- default PC editor
|
|
# Parsers:
|
|
# - ObjectiveC -- that's it!
|
|
#
|
|
|
|
PACKAGE_NAME = ProjectCenter
|
|
include $(GNUSTEP_MAKEFILES)/common.make
|
|
|
|
#
|
|
# Subprojects
|
|
#
|
|
SUBPROJECTS = \
|
|
Projects/Aggregate \
|
|
Projects/Application \
|
|
Projects/Bundle \
|
|
Projects/Framework \
|
|
Projects/Library \
|
|
Projects/ResourceSet \
|
|
Projects/Tool \
|
|
\
|
|
Editors/ProjectCenter \
|
|
\
|
|
Parsers/ProjectCenter \
|
|
\
|
|
Preferences/Build \
|
|
Preferences/Saving \
|
|
Preferences/Misc \
|
|
Preferences/EditorFSC
|
|
|
|
SUBPROJECTS += Debuggers/ProjectCenter
|
|
|
|
|
|
include $(GNUSTEP_MAKEFILES)/aggregate.make
|
|
|