mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-24 20:11:20 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@20194 72102866-910b-0410-8b05-ffd578937521
68 lines
860 B
Makefile
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
|