mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-22 11:21:29 +00:00
38 lines
653 B
Text
38 lines
653 B
Text
|
#
|
||
|
# 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!
|
||
|
#
|
||
|
|
||
|
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
|
||
|
|
||
|
include $(GNUSTEP_MAKEFILES)/aggregate.make
|
||
|
|