~ubuntu-branches/ubuntu/lucid/gnustep-base/lucid

« back to all changes in this revision

Viewing changes to Examples/GNUmakefile

  • Committer: Bazaar Package Importer
  • Author(s): Ilya Barygin
  • Date: 2010-01-22 12:51:20 UTC
  • mfrom: (1.2.9 upstream) (7.1.3 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100122125120-jh559gebg1i3n3nz
Tags: 1.19.3-1ubuntu1
* Merge from Debian testing, remaining changes:
  - adjust DTD paths to look for the local ones to reduce compile time
  - add gnustep-base-common package to Build-Depends-Indep

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
 
26
26
ifeq ($(GNUSTEP_MAKEFILES),)
27
27
 GNUSTEP_MAKEFILES := $(shell gnustep-config --variable=GNUSTEP_MAKEFILES 2>/dev/null)
 
28
  ifeq ($(GNUSTEP_MAKEFILES),)
 
29
    $(warning )
 
30
    $(warning Unable to obtain GNUSTEP_MAKEFILES setting from gnustep-config!)
 
31
    $(warning Perhaps gnustep-make is not properly installed,)
 
32
    $(warning so gnustep-config is not in your PATH.)
 
33
    $(warning )
 
34
    $(warning Your PATH is currently $(PATH))
 
35
    $(warning )
 
36
  endif
28
37
endif
29
38
 
30
39
ifeq ($(GNUSTEP_MAKEFILES),)
38
47
 
39
48
# The tools to be created
40
49
TEST_TOOL_NAME = \
41
 
        dictionary
 
50
        dictionary \
 
51
        nsconnection \
 
52
        nsconnection_client \
 
53
        nsconnection_server \
 
54
 
42
55
 
43
56
# The Objective-C source files to be compiled to create each tool
44
57
dictionary_OBJC_FILES = dictionary.m
 
58
nsconnection_OBJC_FILES = nsconnection.m
 
59
nsconnection_client_OBJC_FILES = nsconnection_client.m
 
60
nsconnection_server_OBJC_FILES = nsconnection_server.m
45
61
 
46
62
include Makefile.preamble
47
63