~ubuntu-branches/ubuntu/edgy/sope/edgy

« back to all changes in this revision

Viewing changes to libFoundation/misc/GNUmakefile

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Ley
  • Date: 2005-08-19 16:53:31 UTC
  • Revision ID: james.westby@ubuntu.com-20050819165331-hs683wz1osm708pw
Tags: upstream-4.4rc.2
ImportĀ upstreamĀ versionĀ 4.4rc.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# GNU makefile
 
2
 
 
3
-include ../../config.make
 
4
include $(GNUSTEP_MAKEFILES)/common.make
 
5
 
 
6
TOOL_NAME = testurl
 
7
 
 
8
testurl_OBJC_FILES = testurl.m
 
9
 
 
10
include $(GNUSTEP_MAKEFILES)/tool.make
 
11
 
 
12
SYSTEM_LIB_DIR += -L/usr/local/lib -L/usr/lib
 
13
 
 
14
# raw tools
 
15
 
 
16
all :: testnested
 
17
 
 
18
clean ::
 
19
        rm -f testnested
 
20
 
 
21
LIBDIR="-L/home/helge/OGoRoot/Library/Libraries"
 
22
LIBS=-lobjc -lnsl -lm -lpthread -ldl
 
23
OPT="-O2"
 
24
 
 
25
testnested : testnested.c
 
26
        gcc -o $@ -g $(OPT) $(LIBDIR) $< $(LIBS)