Commit eefe65690ebee9db4dff10e838be4913590da4fe
1 parent
16e0af89
Exists in
master
and in
79 other branches
Add simple Makefile
Showing
1 changed file
with
12 additions
and
0 deletions
Show diff stats
... | ... | @@ -0,0 +1,12 @@ |
1 | +all clean: | |
2 | + @echo Nothing to be $@, all good. | |
3 | + | |
4 | +plugins_dir=/usr/lib/noosfero/plugins | |
5 | +themes_dir=/usr/lib/noosfero/public/designs/themes | |
6 | + | |
7 | +install: | |
8 | + install -d -m 0755 $(DESTDIR)/$(plugins_dir)/software_communities | |
9 | + cp -vr software_communities/* $(DESTDIR)/$(plugins_dir)/software_communities/ | |
10 | + install -d -m 0755 $(DESTDIR)/$(themes_dir)/noosfero-spb-theme | |
11 | + cp -vr noosfero-spb-theme/* $(DESTDIR)/$(themes_dir)/noosfero-spb-theme/ | |
12 | + | ... | ... |