mirror of
https://github.com/purplecabbage/phonegap-plugins.git
synced 2026-01-14 08:57:53 -05:00
21 lines
707 B
Makefile
21 lines
707 B
Makefile
all: help
|
|
|
|
#-------------------------------------------------------------------------------
|
|
clean:
|
|
-@chmod +w desktop-app/*.json.js phonegap-app/*.json.js phonegap-app/images/*
|
|
|
|
#-------------------------------------------------------------------------------
|
|
build: clean
|
|
@python rebuild-tests-json.py
|
|
@cp desktop-app/images/* phonegap-app/images
|
|
@cp desktop-app/*.json.js phonegap-app
|
|
@chmod -w desktop-app/*.json.js phonegap-app/*.json.js phonegap-app/images/*
|
|
|
|
#-------------------------------------------------------------------------------
|
|
help:
|
|
@echo make targets available:
|
|
@echo " help print this help"
|
|
@echo " build build the tests"
|
|
@echo " clean remove the transient test files"
|
|
|