friendica-addons/Makefile

15 lines
368 B
Makefile
Raw Normal View History

2011-11-14 11:57:03 +01:00
# 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."