blob: 99a3957ffab8d6ce459ab6b4425e95620e8c309d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
PROJECT = html5UIAMBSimulator
VERSION := 0.0.1
PACKAGE = $(PROJECT)-$(VERSION)
INSTALL_FILES = $(PROJECT).wgt
INSTALL_DIR = ${DESTDIR}/opt/usr/apps/.preinstallWidgets
wgtPkg:
zip -r $(PROJECT).wgt config.xml css icon.png index.html js templates
install:
@echo "Installing AMBSimulator, stand by..."
mkdir -p $(INSTALL_DIR)/
cp $(PROJECT).wgt $(INSTALL_DIR)/
dist:
tar czf ../$(PACKAGE).tar.bz2 .
|