diff options
author | Havoc Pennington <hp@redhat.com> | 2003-06-22 05:53:06 +0000 |
---|---|---|
committer | Havoc Pennington <hp@redhat.com> | 2003-06-22 05:53:06 +0000 |
commit | 93b5a19c9f0979b5f227760af2ce5a0d076521f9 (patch) | |
tree | 1704ae1cbebdfacc0ca5d7c98e9c90bf55b27fd3 /mono/Makefile.am | |
parent | 8e99e853a7abbb5344240c35b66853eeaedca48e (diff) |
2003-06-22 Havoc Pennington <hp@pobox.com>
* mono/*, gcj/*, configure.in, Makefile.am:
Check in makefiles and subdirs for mono and gcj bindings.
Neither binding actually exists, just trying to get through
all the build and other boring bits.
Diffstat (limited to 'mono/Makefile.am')
-rw-r--r-- | mono/Makefile.am | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/mono/Makefile.am b/mono/Makefile.am new file mode 100644 index 00000000..d81bcc28 --- /dev/null +++ b/mono/Makefile.am @@ -0,0 +1,25 @@ +DESTDIR= + +DLLS=dbus-sharp.dll +NOINST_EXES=test-dbus-sharp + +DBUS_SHARP_FILES=Message.cs +TEST_DBUS_SHARP_FILES=Test.cs + +all: $(DLLS) $(NOINST_EXES) + +dbus-sharp.dll: $(DBUS_SHARP_FILES) + $(MCS) $(MCSFLAGS) --unsafe --target library -o dbus-sharp.dll --recurse '$(DBUS_SHARP_FILES)' + +test-dbus-sharp: $(TEST_DBUS_SHARP_FILES) + $(MCS) $(MCSFLAGS) --unsafe --target exe -L . -r dbus-sharp.dll -o test-dbus-sharp --recurse '$(TEST_DBUS_SHARP_FILES)' + +clean: + rm -f $(DLLS) $(NOINST_EXES) + +install: all + ../mkinstalldirs $(DESTDIR)$(prefix)/lib && \ + cp $(DLLS) $(DESTDIR)$(prefix)/lib || exit 1 + +EXTRA_DIST=$(DBUS_SHARP_FILES) + |