summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authormjj29 <mjj29@illythia>2006-02-21 11:58:22 +0000
committermjj29 <mjj29@illythia>2006-02-21 11:58:22 +0000
commitb7146d5cab1948dcd0d715930c4f5bc7f45c8384 (patch)
tree2eea8d7c62fa5dcbd0b9208771960907d68640d8 /Makefile
parent101ad6bf1f27c9fb9120a190b75602683bac52e0 (diff)
proper noreply support
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 81f6b2a..6ed8b22 100644
--- a/Makefile
+++ b/Makefile
@@ -48,13 +48,18 @@ $(CLASSDIR)/DBusConnection.class: $(SRCDIR)/dbus/DBusConnection.java
make classes
$(CLASSDIR)/DBusErrorMessage.class: $(SRCDIR)/dbus/DBusErrorMessage.java
make classes
+$(CLASSDIR)/MethodCall.class: $(SRCDIR)/dbus/MethodCall.java
+ make classes
org_freedesktop_dbus_DBusConnection.h: $(CLASSDIR)/DBusConnection.class
$(JAVAH) -classpath classes:$(CLASSPATH) -d . org.freedesktop.dbus.DBusConnection
touch $@
org_freedesktop_dbus_DBusErrorMessage.h: $(CLASSDIR)/DBusErrorMessage.class
$(JAVAH) -classpath classes:$(CLASSPATH) -d . org.freedesktop.dbus.DBusErrorMessage
touch $@
-dbus-java.o: dbus-java.c org_freedesktop_dbus_DBusConnection.h org_freedesktop_dbus_DBusErrorMessage.h
+org_freedesktop_dbus_MethodCall.h: $(CLASSDIR)/MethodCall.class
+ $(JAVAH) -classpath classes:$(CLASSPATH) -d . org.freedesktop.dbus.MethodCall
+ touch $@
+dbus-java.o: dbus-java.c org_freedesktop_dbus_DBusConnection.h org_freedesktop_dbus_DBusErrorMessage.h org_freedesktop_dbus_MethodCall.h
$(CC) $(CFLAGS) -fpic -c $< -o $@
libdbus-java.so: dbus-java.o