diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2003-09-22 22:53:52 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2003-09-22 22:53:52 +0000 |
commit | 149ff2aa6f6d2eb7da5fda28f245a56bab685630 (patch) | |
tree | d3403bc2c0f22fe72793738137101b3e4c180486 /w3mimg/fb | |
parent | m17n patch merge done (diff) | |
download | w3m-149ff2aa6f6d2eb7da5fda28f245a56bab685630.tar.gz w3m-149ff2aa6f6d2eb7da5fda28f245a56bab685630.zip |
more autoconfiscate
Diffstat (limited to 'w3mimg/fb')
-rw-r--r-- | w3mimg/fb/.cvsignore | 1 | ||||
-rw-r--r-- | w3mimg/fb/Makefile.in | 31 |
2 files changed, 32 insertions, 0 deletions
diff --git a/w3mimg/fb/.cvsignore b/w3mimg/fb/.cvsignore new file mode 100644 index 0000000..f3c7a7c --- /dev/null +++ b/w3mimg/fb/.cvsignore @@ -0,0 +1 @@ +Makefile diff --git a/w3mimg/fb/Makefile.in b/w3mimg/fb/Makefile.in new file mode 100644 index 0000000..2fbc9db --- /dev/null +++ b/w3mimg/fb/Makefile.in @@ -0,0 +1,31 @@ +# +# w3mimg/fb/Makefile +# +# +@SET_MAKE@ +SHELL=@SHELL@ +srcdir = @srcdir@ +top_srcdir = @top_srcdir@ +VPATH = $(srcdir):. +RM=rm + +IMGCFLAGS=@IMGFBCFLAGS@ +OBJS=fb.o fb_img.o + +all: fb_w3mimg.o fb.o fb_img.o + +fb_w3mimg.o: fb_w3mimg.c + $(CC) $(CFLAGS) $(IMGCFLAGS) -I$(top_srcdir) -c $< + +fb.o: fb.c + $(CC) $(CFLAGS) $(IMGCFLAGS) -I$(top_srcdir) -c $< + +fb_img.o: fb_img.c fb_gdkpixbuf.c fb_imlib2.c + $(CC) $(CFLAGS) $(IMGCFLAGS) -I$(top_srcdir) -c $< + +clean: + @-$(RM) -f *.o + +# + + |