2002-08-05 Rachel Hestilow <hestilow@ximian.com>

* makefile, */Makefile.in: Packaging fix from
	Robert McQueen (a.k.a. Robot101).

svn path=/trunk/gtk-sharp/; revision=6455
This commit is contained in:
Rachel Hestilow 2002-08-06 02:07:10 +00:00
parent ab115875e4
commit d60309616b
8 changed files with 25 additions and 8 deletions

View File

@ -1,3 +1,8 @@
2002-08-05 Rachel Hestilow <hestilow@ximian.com>
* makefile, */Makefile.in: Packaging fix from
Robert McQueen (a.k.a. Robot101).
2002-08-05 Rachel Hestilow <hestilow@ximian.com>
* gnome/Canvas*.custom, IconTextItem.custom: Added.

View File

@ -1,4 +1,5 @@
MCS=mcs
DESTDIR=
all: linux
@ -15,5 +16,5 @@ clean:
rm -f generated/*
install: all
cp atk-sharp.dll @prefix@/lib
cp atk-sharp.dll $(DESTDIR)@prefix@/lib

View File

@ -1,4 +1,5 @@
MCS=mcs
DESTDIR=
all: linux
@ -15,5 +16,5 @@ clean:
rm -f generated/*
install: all
cp gdk-sharp.dll @prefix@/lib
cp gdk-sharp.dll $(DESTDIR)@prefix@/lib

View File

@ -1,4 +1,5 @@
MCS=mcs
DESTDIR=
all: linux
@ -15,5 +16,5 @@ clean:
rm -f generated/*
install: all
cp glib-sharp.dll @prefix@/lib || exit 1
cp glib-sharp.dll $(DESTDIR)@prefix@/lib || exit 1

View File

@ -1,4 +1,5 @@
MCS=mcs
DESTDIR=
@ENABLE_GNOME_TRUE@ all: linux
@ENABLE_GNOME_FALSE@ all:
@ -16,5 +17,5 @@ clean:
rm -f generated/*
install: all
@ENABLE_GNOME_TRUE@ cp gnome-sharp.dll @prefix@/lib
@ENABLE_GNOME_TRUE@ cp gnome-sharp.dll $(DESTDIR)@prefix@/lib

View File

@ -1,4 +1,5 @@
MCS=mcs
DESTDIR=
all: linux
@ -15,5 +16,5 @@ clean:
rm -f generated/*
install: all
cp gtk-sharp.dll @prefix@/lib
cp gtk-sharp.dll $(DESTDIR)@prefix@/lib

View File

@ -26,11 +26,17 @@ native:
(cd glue; make) || exit 1;
clean:
(cd glue; make clean) || exit 1;
for i in $(DIRS); do \
for i in glue $(DIRS); do \
(cd $$i; make clean) || exit 1; \
done;
distclean: clean
(cd glue; make distclean) || exit 1;
for i in $(DIRS); do \
rm -f $$i/Makefile; \
done
rm -f config.cache config.h config.log config.status libtool
install: install-native install-binding
install-binding:

View File

@ -1,4 +1,5 @@
MCS=mcs
DESTDIR=
all: linux
@ -15,5 +16,5 @@ clean:
rm -f generated/*
install: all
cp pango-sharp.dll @prefix@/lib
cp pango-sharp.dll $(DESTDIR)@prefix@/lib