apps-gorm/Documentation/Examples/SimpleApp/GNUmakefile
Gregory John Casamento 773c418bf7 Documentation improvents and an example application.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@20178 72102866-910b-0410-8b05-ffd578937521
2004-09-29 00:56:26 +00:00

65 lines
801 B
Makefile

#
# GNUmakefile
#
#
# Put all of your customisations in GNUmakefile.preamble and
# GNUmakefile.postamble
#
include $(GNUSTEP_MAKEFILES)/common.make
#
# Main application
#
PACKAGE_NAME=SimpleApp
APP_NAME=SimpleApp
GNUSTEP_INSTALLATION_DIR=$(GNUSTEP_LOCAL_ROOT)/
SimpleApp_MAIN_MODEL_FILE=MainMenu.gorm
#
# Additional libraries
#
ADDITIONAL_GUI_LIBS +=
#
# Resource files
#
SimpleApp_RESOURCE_FILES= \
MainMenu.gorm
#
# Header files
#
SimpleApp_HEADERS= \
MyController.h
#
# Class files
#
SimpleApp_OBJC_FILES= \
main.m \
MyController.m
#
# C files
#
SimpleApp_C_FILES=
#
# Subprojects
#
SUBPROJECTS =
-include GNUmakefile.preamble
-include GNUmakefile.local
include $(GNUSTEP_MAKEFILES)/aggregate.make
include $(GNUSTEP_MAKEFILES)/application.make
-include GNUmakefile.postamble