diff options
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 + +# + + |