"make check" and "make unit" are now subdependencies of an otherwise empty "make test". However, at least with my version of GNU make (4.0), the existence of "test.sh" appears to imply an implicit rule that does this:
cat test.sh >test chmod a+x test so i end up with an extra file named "test" that is an exact copy of test.sh. Not sure what the right way to clean this up is, but it makes my build slightly messier than it needs to be. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index cf41982..694c2aa 100644 --- a/Makefile +++ b/Makefile @@ -20,7 +20,7 @@ endif XPIFILE = $(XPI_MODULE)-$(XPI_MODULE_VERS).xpi -.PHONY: dirs $(DIRS) +.PHONY: dirs $(DIRS) test all: $(ALL) -- 2.6.4 _______________________________________________ enigmail-users mailing list [email protected] To unsubscribe or make changes to your subscription click here: https://admin.hostpoint.ch/mailman/listinfo/enigmail-users_enigmail.net
