apps-gorm/Documentation/Examples/Controller/GNUmakefile
Gregory John Casamento a7d656b579 More documentation.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@20194 72102866-910b-0410-8b05-ffd578937521
2004-10-04 03:56:28 +00:00

68 lines
860 B
Makefile

#
# GNUmakefile
#
#
# Put all of your customisations in GNUmakefile.preamble and
# GNUmakefile.postamble
#
include $(GNUSTEP_MAKEFILES)/common.make
#
# Main application
#
PACKAGE_NAME=Controller
APP_NAME=Controller
GNUSTEP_INSTALLATION_DIR=$(GNUSTEP_LOCAL_ROOT)/
Controller_MAIN_MODEL_FILE=MainMenu.gorm
#
# Additional libraries
#
ADDITIONAL_GUI_LIBS +=
#
# Resource files
#
Controller_RESOURCE_FILES= \
MainMenu.gorm \
Controller.gorm
#
# Header files
#
Controller_HEADERS= \
MyController.h \
WinController.h
#
# Class files
#
Controller_OBJC_FILES= \
main.m \
MyController.m \
WinController.m
#
# C files
#
Controller_C_FILES=
#
# Subprojects
#
SUBPROJECTS =
-include GNUmakefile.preamble
-include GNUmakefile.local
include $(GNUSTEP_MAKEFILES)/aggregate.make
include $(GNUSTEP_MAKEFILES)/application.make
-include GNUmakefile.postamble