~ubuntu-branches/ubuntu/lucid/w3m/lucid-proposed

« back to all changes in this revision

Viewing changes to w3mimg/x11/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Fumitoshi UKAI
  • Date: 2004-04-29 03:28:41 UTC
  • Revision ID: james.westby@ubuntu.com-20040429032841-uo4mu7a813aqrua8
Tags: upstream-0.5.1
ImportĀ upstreamĀ versionĀ 0.5.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# w3mimg/x11/Makefile
 
3
#
 
4
#
 
5
@SET_MAKE@
 
6
SHELL=@SHELL@
 
7
srcdir = @srcdir@
 
8
top_srcdir = @top_srcdir@
 
9
VPATH = $(srcdir):.
 
10
CFLAGS=$(OPTS) -I../.. -I$(top_srcdir) -I$(srcdir) @CFLAGS@ @CPPFLAGS@ @DEFS@ $(IMGCFLAGS)
 
11
RM=rm
 
12
 
 
13
IMGCFLAGS=@IMGX11CFLAGS@
 
14
OBJS=x11_w3mimg.o
 
15
 
 
16
all: x11_w3mimg.o
 
17
 
 
18
x11_w3mimg.o: x11_w3mimg.c
 
19
        $(CC) $(CFLAGS) -c $<
 
20
 
 
21
clean:
 
22
        @-$(RM) -f *.o
 
23
 
 
24
distclean: clean
 
25
        -$(RM) -f Makefile
 
26
 
 
27
#
 
28
 
 
29