[Gtk-sharp-list] [Change] rsvg/Makefile.in

Charles Iliya Krempeaux charles@reptile.ca
22 Feb 2003 01:42:45 -0800


--=-NommT6WT5YmaLQD2qwC9
Content-Type: text/plain
Content-Transfer-Encoding: 7bit

Hello,

This is a modification that needs to be made to a file I
posted for adding librsvg support to Gtk#.

The "rsvg/Makefile.in" file isn't correct.  The correct
version is attached to this file.


See ya

-- 
     Charles Iliya Krempeaux, BSc
     charles@reptile.ca

________________________________________________________________________
 Reptile Consulting & Services    604-REPTILE    http://www.reptile.ca/

--=-NommT6WT5YmaLQD2qwC9
Content-Disposition: attachment; filename=Makefile.in
Content-Transfer-Encoding: quoted-printable
Content-Type: text/x-makefile; name=Makefile.in; charset=ISO-8859-1

COMPILER=3Dmcs
OUTPUT=3Drsvg-sharp.dll

all: linux

linux: $(OUTPUT)

$(OUTPUT): *.cs generated/*.cs
	$(COMPILER) \
	    --unsafe\
	    --target library \
	    -L ../glib \
	    -L ../gdk \
	    -L ../gtk \
	    -L ../art \
	    -r glib-sharp.dll -r gdk-sharp.dll -r gtk-sharp.dll -r art-sharp.dll \
	    -o $(OUTPUT) \
	    --recurse '*.cs'



clean: clean-dll clean-generated

clean-dll:
	rm -f *.dll

clean-generated:=09
	rm -rf generated



install: all
	../mkinstalldirs $(DESTDIR)@prefix@/lib && \
	cp $(OUTPUT) $(DESTDIR)@prefix@/lib



--=-NommT6WT5YmaLQD2qwC9--