Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove duplicate make dist target #708

Merged
merged 1 commit into from
Feb 12, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 0 additions & 22 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -97,28 +97,6 @@ endif
# dist
#

# Builds the source and appstore package
.PHONY: dist
dist:
make appstore

# Builds the source package for the app store, ignores php and js tests
.PHONY: appstore
appstore:
rm -rf $(appstore_build_directory)
mkdir -p $(appstore_package_name)
cp --parents -r \
appinfo \
css \
img \
js \
l10n \
lib \
templates \
LICENSE \
README.md \
$(appstore_package_name)

$(dist_dir)/$(app_name): $(bower_deps)
rm -Rf $@; mkdir -p $@
cp -R $(all_src) $@
Expand Down