1# Example for use of GNU gettext. 2# Copyright (C) 2003 Free Software Foundation, Inc. 3# This file is in the public domain. 4 5include $(GNUSTEP_MAKEFILES)/common.make 6 7# Subprojects 8SUBPROJECTS = po 9 10# Main application 11PACKAGE_NAME = Hello 12APP_NAME = Hello 13GNUSTEP_INSTALLATION_DIR = $(GNUSTEP_LOCAL_ROOT) 14Hello_APPLICATION_ICON = 15 16# Additional libraries 17ADDITIONAL_GUI_LIBS += 18 19# Resource files 20Hello_RESOURCE_FILES = 21Hello_LOCALIZED_RESOURCE_FILES = Localizable.strings 22Hello_LANGUAGES := $(sort English $(shell MAKEFLAGS= $(MAKE) -s -C po echo-languages)) 23 24# Header files 25Hello_HEADERS = AppController.h Hello.h 26 27# Class files 28Hello_OBJC_FILES = main.m AppController.m Hello.m 29 30# C files 31Hello_C_FILES = 32 33-include GNUmakefile.preamble 34-include GNUmakefile.local 35include $(GNUSTEP_MAKEFILES)/aggregate.make 36include $(GNUSTEP_MAKEFILES)/application.make 37-include GNUmakefile.postamble 38