8000 Excluded documentation from package · stm32duino/ArduinoModule-CMSIS@4c6bb5f · GitHub
[go: up one dir, main page]

Skip to content

Commit 4c6bb5f

Browse files
committed
Excluded documentation from package
1 parent 95f1fd5 commit 4c6bb5f

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

Makefile

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,17 @@ endif
4848
all: clean print_info
4949
@echo ----------------------------------------------------------
5050
@echo "Packaging module."
51-
tar --transform "s|module|$(PACKAGE_NAME)-$(PACKAGE_VERSION)|g" --exclude=.gitattributes --exclude=.travis.yml --exclude-vcs -cjf "$(PACKAGE_NAME)-$(PACKAGE_VERSION).tar.bz2" "$(PACKAGE_FOLDER)"
51+
tar --transform "s|module|$(PACKAGE_NAME)-$(PACKAGE_VERSION)|g" \
52+
--exclude=./.gitattributes \
53+
--exclude=./.travis.yml \
54+
--exclude=CMSIS/index.html \
55+
--exclude=CMSIS/Documentation \
56+
--exclude=CMSIS/Pack \
57+
--exclude=CMSIS/Utilities \
58+
--exclude=CMSIS/DSP_Lib/Examples \
59+
--exclude=Device/ARM/Documents \
60+
--exclude-vcs \
61+
-cjf "$(PACKAGE_NAME)-$(PACKAGE_VERSION).tar.bz2" "$(PACKAGE_FOLDER)"
5262
$(MAKE) --no-builtin-rules postpackaging -C .
5363
@echo ----------------------------------------------------------
5464

0 commit comments

Comments
 (0)
0