apps-projectcenter/Modules/GNUmakefile
Sergii Stoian dfb30e2882 * Rewriting of preferences finished
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@27991 72102866-910b-0410-8b05-ffd578937521
2009-02-27 00:46:25 +00:00

52 lines
1,009 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/Interface
# Do not compile the Debuggers/ProjectCenter module on MinGW since I'm
# told at the moment it doesn't even compile there.
ifneq ($(GNUSTEP_TARGET_OS), mingw32)
SUBPROJECTS += Debuggers/ProjectCenter
endif
include $(GNUSTEP_MAKEFILES)/aggregate.make