|
Revision 21698, 311 bytes
(checked in by madarche, 3 years ago)
|
Cosmit
|
- Property svn:eol-style set to
native
- Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 |
# |
|---|
| 2 |
# builds OOo addon |
|---|
| 3 |
# |
|---|
| 4 |
# only a matter of zip |
|---|
| 5 |
#(.xcu file must be at the root of the zip file) |
|---|
| 6 |
# |
|---|
| 7 |
# retrieve parameters from conf file |
|---|
| 8 |
include addonconf.Makefile |
|---|
| 9 |
# |
|---|
| 10 |
.PHONY: makeaddon |
|---|
| 11 |
makeaddon: |
|---|
| 12 |
@(cd ${addonDirectory} ; \ |
|---|
| 13 |
zip -r addon ./ ; \ |
|---|
| 14 |
mv ./addon.zip ../${targetName} ; \ |
|---|
| 15 |
) |
|---|
| 16 |
|
|---|
| 17 |
clean: |
|---|
| 18 |
rm -f ${targetName} |
|---|
| 19 |
|
|---|