diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2003-10-10 16:33:13 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2003-10-10 16:33:13 +0000 |
commit | e99561b348480f1e2aa7c99b152f915ab899ab14 (patch) | |
tree | 960fa3179278801cf75ef241ca46890122e770b9 /w3mimg | |
parent | [w3m-dev 03985] Re: support for 307 Temporary Redirect (diff) | |
download | w3m-e99561b348480f1e2aa7c99b152f915ab899ab14.tar.gz w3m-e99561b348480f1e2aa7c99b152f915ab899ab14.zip |
* scripts/Makefile.in (w3mhelp-funcname.pl): depends ../funcname.tab
* Makefile.in (IMGOBJS): deleted
(indep.o): depends on fm.h funcname1.h
(IMGDISPLAY): depends on w3mimg/w3mimg.a
(w3mimg/w3mimg.a): renamed from w3mimg
* acinclude.m4 (AC_W3M_IMAGE): modify IMBOBJS
* w3mimg/Makefile.in (AR): added
(RANLIB): added
(IMGOBJS): added
(w3mimg.a): added
From: Fumitoshi UKAI <ukai@debian.or.jp>
* [w3m-dev 03990] Re: post-m17n merge problem?
* Makefile.in (MAN1): need $(top_srcdir)
(MAN1_JA): ditto
(LOBJS): depends on fm.h funcname1.h
(INFLATE): depends on $(ALIB)
(libwc/libwc.a): renamed from libwc
(IMGDISPLAY): depends on $(IMGOBJS) instead of w3mimg
depends on $(ALIB)
(w3mimgdisplay.o): depends on w3mimg/w3mimg.h
* acinclude.m4 (AC_W3M_M17N): WCTARGET is libwc/libwc.a
* configure.in (HELP_DIR): expand ${prefix}
From: qhwt@myrealbox.com
Diffstat (limited to 'w3mimg')
-rw-r--r-- | w3mimg/Makefile.in | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/w3mimg/Makefile.in b/w3mimg/Makefile.in index 4fc6286..ab6b269 100644 --- a/w3mimg/Makefile.in +++ b/w3mimg/Makefile.in @@ -6,12 +6,19 @@ SHELL=@SHELL@ srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = $(srcdir):. +AR=ar +RANLIB=@RANLIB@ RM=rm IMGCFLAGS=@IMGX11CFLAGS@ @IMGFBCFLAGS@ +IMGOBJS=@IMGOBJS@ .PHONY: fb x11 -all: w3mimg.o @IMGTARGETS@ +all: @IMGTARGETS@ w3mimg.a + +w3mimg.a: $(IMGOBJS) + $(AR) rv $@ $^ + $(RANLIB) $@ w3mimg.o: w3mimg.c $(CC) $(CFLAGS) $(IMGCFLAGS) -I.. -I$(top_srcdir) -I$(srcdir) -c $< |