]> jfr.im git - irc/quakenet/newserv.git/blobdiff - trusts/Makefile.in
add version information to modules missing it
[irc/quakenet/newserv.git] / trusts / Makefile.in
index ee9c59bfcc9c23da9faef0db3ea7ca3cc2a31074..893e8540bb4ce34b8952abaafb9f737dce96dd73 100644 (file)
@@ -1,8 +1,36 @@
 @include@ @includel@../build.mk@includel@
 
-.PHONY: all
-all: trusts.so trusts_commands.so
+TRUSTSDIRS=newsearch
 
-trusts.so: trusts.o migration.o db.o db-migration.o data.o formats.o
+.PHONY: all dirs $(TRUSTSDIRS) clean distclean
+
+all: trusts.so trusts_commands.so trusts_policy.so trusts_migration.so trusts_db.so trusts_management.so trusts_master.so trusts_slave.so dirs
+
+trusts.so: trusts.o data.o formats.o events.o
+
+trusts_db.so: trusts_db.o
 
 trusts_commands.so: trusts_commands.o
+
+trusts_policy.so: trusts_policy.o
+
+trusts_migration.so: trusts_migration.o db-migration.o migration.o
+
+trusts_management.so: trusts_management.o
+
+trusts_master.so: trusts_master.o
+
+trusts_slave.so: trusts_slave.o db-slave.o
+
+dirs: $(TRUSTSDIRS)
+       ln -sf */*.so .
+
+$(TRUSTSDIRS):
+       cd $@ && $(MAKE) $(MFLAGS) all
+
+clean:
+       rm -f */*.o */*.so *.o *.so
+
+distclean:
+       rm -f */Makefile Makefile
+