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