forked from ciakval/phpbb-vipposts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
35 lines (29 loc) · 641 Bytes
/
Makefile
File metadata and controls
35 lines (29 loc) · 641 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# This file is part of the VIP Posts extension package
#
# @copyright (c) 2016, Honza Remes
# @license GNU General Public License, version 2 (GPL-2.0)
#
# File: Makefile
# Author: Honza Remes (xremes00@stud.fit.vutbr.cz)
# Project: VIP Posts
#
# This Makefile is created to automate deploying the extension
ZIPNAME = vipposts.zip
USED = acp \
adm \
composer.json \
config \
event \
language \
license.txt \
migrations \
styles
.PHONY: all pack clean
all: pack
pack:
$(MAKE) clean
mkdir -p ciakval/vipposts
cp -r $(USED) ciakval/vipposts
zip -r $(ZIPNAME) ciakval
clean:
rm -rf ciakval $(ZIPNAME)