2002-12-22 Robert McQueen <robot101@debian.org>

* makefile: when doing distclean, attempt distclean on all the
        C# subdirs too
        * gconf/Makefile.in: added distclean target to rm the Makefiles
        in the subdirs of gconf/
        * glue/Makefile.am: build libgtksharpglue as an unversioned
        module to avoid so -> so.0 -> so.0.0 symlink mess
        * */Makefile.in: call mkinstalldirs before installing any files
        so that subdirs can be installed seperately or in any sequence
        (eg binding dirs before native dirs)

svn path=/trunk/gtk-sharp/; revision=9828
This commit is contained in:
Robert McQueen 2002-12-22 05:08:52 +00:00
parent bef7dc015f
commit 5c87903756
18 changed files with 34 additions and 0 deletions

View File

@ -1,3 +1,15 @@
2002-12-22 Robert McQueen <robot101@debian.org>
* makefile: when doing distclean, attempt distclean on all the
C# subdirs too
* gconf/Makefile.in: added distclean target to rm the Makefiles
in the subdirs of gconf/
* glue/Makefile.am: build libgtksharpglue as an unversioned
module to avoid so -> so.0 -> so.0.0 symlink mess
* */Makefile.in: call mkinstalldirs before installing any files
so that subdirs can be installed seperately or in any sequence
(eg binding dirs before native dirs)
2002-12-20 Alp Toker <alp@atoker.com>
* api/gst-api.xml: Make Gst# link to libgstreamer.so as per pkg-config

View File

@ -16,5 +16,6 @@ clean:
rm -rf generated
install: all
../mkinstalldirs $(DESTDIR)@prefix@/lib && \
cp art-sharp.dll $(DESTDIR)@prefix@/lib

View File

@ -16,5 +16,6 @@ clean:
rm -rf generated
install: all
../mkinstalldirs $(DESTDIR)@prefix@/lib && \
cp atk-sharp.dll $(DESTDIR)@prefix@/lib

View File

@ -21,6 +21,7 @@ gconf-sharp-peditors.dll: $(SOURCES)
$(MCS) $(SOURCES) -L ../../glib -L ../../pango -L ../../atk -L ../../gdk -L ../../gtk -L ../../art -L ../../gnome -L ../GConf -L ../../glade /r:glib-sharp.dll /r:pango-sharp.dll /r:atk-sharp.dll /r:gdk-sharp.dll /r:gtk-sharp.dll /r:art-sharp.dll /r:gnome-sharp.dll /r:glade-sharp.dll /r:gconf-sharp.dll /r:System.Drawing /target:library /out:gconf-sharp-peditors.dll
install: all
../../mkinstalldirs $(DESTDIR)@prefix@/lib && \
cp gconf-sharp-peditors.dll $(DESTDIR)@prefix@/lib
clean:

View File

@ -19,6 +19,7 @@ gconf-sharp.dll: $(SOURCES)
$(MCS) $(SOURCES) -L ../../glib /r:glib-sharp.dll /target:library /out:gconf-sharp.dll
install: all
../../mkinstalldirs $(DESTDIR)@prefix@/lib && \
cp gconf-sharp.dll $(DESTDIR)@prefix@/lib
clean:

View File

@ -17,3 +17,8 @@ clean:
for i in $(SUBDIRS); do \
$(MAKE) -C $$i clean || exit 1; \
done
distclean: clean
for i in $(SUBDIRS); do \
rm -f $$i/Makefile; \
done

View File

@ -17,6 +17,7 @@ gconfsharp-schemagen: gconfsharp-schemagen.in
&& chmod +x gconfsharp-schemagen
install: all
../../mkinstalldirs $(DESTDIR)@prefix@/bin && \
chmod +x gconfsharp-schemagen && cp gconfsharp-schemagen.exe gconfsharp-schemagen $(DESTDIR)@prefix@/bin
clean:

View File

@ -17,4 +17,5 @@ clean:
rm -rf generated
install: all
@ENABLE_GDA_TRUE@ ../mkinstalldirs $(DESTDIR)@prefix@/lib && \
@ENABLE_GDA_TRUE@ cp gda-sharp.dll $(DESTDIR)@prefix@/lib

View File

@ -16,5 +16,6 @@ clean:
rm -rf generated
install: all
../mkinstalldirs $(DESTDIR)@prefix@/lib && \
cp gdk-sharp.dll $(DESTDIR)@prefix@/lib

View File

@ -17,4 +17,5 @@ clean:
rm -rf generated
install: all
@ENABLE_GLADE_TRUE@ ../mkinstalldirs $(DESTDIR)@prefix@/lib && \
@ENABLE_GLADE_TRUE@ cp glade-sharp.dll $(DESTDIR)@prefix@/lib

View File

@ -16,5 +16,6 @@ clean:
rm -rf generated
install: all
../mkinstalldirs $(DESTDIR)@prefix@/lib && \
cp glib-sharp.dll $(DESTDIR)@prefix@/lib || exit 1

View File

@ -29,6 +29,8 @@ GNOMESOURCES = \
program.c \
#
libgtksharpglue_la_LDFLAGS = -module -avoid-version
# fixme: Makefile.am = THE SUCK
if ENABLE_GNOME

View File

@ -17,5 +17,6 @@ clean:
rm -rf generated
install: all
@ENABLE_GNOME_TRUE@ ../mkinstalldirs $(DESTDIR)@prefix@/lib && \
@ENABLE_GNOME_TRUE@ cp gnome-sharp.dll $(DESTDIR)@prefix@/lib

View File

@ -17,4 +17,5 @@ clean:
rm -rf generated
install: all
@ENABLE_GNOMEDB_TRUE@ ../mkinstalldirs $(DESTDIR)@prefix@/lib && \
@ENABLE_GNOMEDB_TRUE@ cp gnomedb-sharp.dll $(DESTDIR)@prefix@/lib

View File

@ -16,5 +16,6 @@ clean:
rm -rf generated
install: all
../mkinstalldirs $(DESTDIR)@prefix@/lib && \
cp gst-sharp.dll $(DESTDIR)@prefix@/lib || exit 1

View File

@ -16,5 +16,6 @@ clean:
rm -rf generated
install: all
../mkinstalldirs $(DESTDIR)@prefix@/lib && \
cp gtk-sharp.dll $(DESTDIR)@prefix@/lib

View File

@ -37,6 +37,7 @@ distclean: clean
$(MAKE) -C $$i distclean || exit 1; \
done
for i in $(DIRS); do \
$(MAKE) -C $$i distclean || true; \
rm -f $$i/Makefile; \
done
rm -f config.cache config.h config.log config.status libtool

View File

@ -16,5 +16,6 @@ clean:
rm -rf generated
install: all
../mkinstalldirs $(DESTDIR)@prefix@/lib && \
cp pango-sharp.dll $(DESTDIR)@prefix@/lib