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