From 4a21a505df40dbcd966c6b213e09b6070af7cfda Mon Sep 17 00:00:00 2001 From: Fabio Comuni Date: Mon, 14 Nov 2011 11:57:03 +0100 Subject: [PATCH] addons package makefile --- Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..0780ee67 --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +# Build addons packages +SRC = buglink fortunate nsfw sniper uhremotestorage \ + calc impressum oembed statusnet widgets \ + communityhome js_upload piwik tictac wppost \ + convert ldapauth poormancron tumblr \ + facebook membersince randplace twitter + +DESTS = $(addsuffix .tgz,$(SRC)) + +all: $(DESTS) + +%.tgz: % + @echo -n Creating $@... + @tar czf $@ $< + @echo " Done." \ No newline at end of file