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