~ubuntu-branches/ubuntu/breezy/gettext/breezy

« back to all changes in this revision

Viewing changes to gettext-tools/examples/hello-objc-gnustep/GNUmakefile

  • Committer: Bazaar Package Importer
  • Author(s): Santiago Vila
  • Date: 2004-03-14 17:40:02 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040314174002-p1ad5ldve1hqzhye
Tags: 0.14.1-2
* Added libexpat1-dev to Build-Depends, for glade support.
* Added libc0.1-dev to Build-Depends, for GNU/kFreeBSD.
* Removed special-casing of knetbsd-gnu in debian/rules.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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