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