diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2009-08-09 20:53:50 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-06-26 00:30:13 -0600 |
commit | 530c6ff02be9ce6604e16ac33ec24569a39f6b0c (patch) | |
tree | 9088120e8abb41c5426f3faa6b21e6eff58454cb /plugins/users | |
parent | 2d9534da516df2130d3f3b17eb4ae039cc47d4cf (diff) |
add dist to makefiles
Diffstat (limited to 'plugins/users')
-rw-r--r-- | plugins/users/Makefile.in | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/plugins/users/Makefile.in b/plugins/users/Makefile.in index e6f3c24..b97720b 100644 --- a/plugins/users/Makefile.in +++ b/plugins/users/Makefile.in @@ -74,6 +74,18 @@ distclean : clean $(RM) Makefile $(RM) -r out +# dist ############################################################# + +d = $(name)-$(ver) +dist : $(d).tar.gz + +$(d).tar.gz : $(d) + tar -czf $@ $< + +$(d) : distclean + $(INSTALL) -m 777 -d $@ + $(CP) -r $(mysrcdir)/* $@ + # implicit rules ################################################### b := @ |