~vierbergenlars/remotecp-panel/offline-db-access

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
# Make RemoteCP Panel

panel: style.css scripts.js lng licenses/licenses.html installer
# Make css file
style.css: 
	./build/compile_css.phpx
# Make script files
scripts.js:
	./build/compile_scripts.phpx
# Make lng files
lng:
	./build/compile_lng.phpx
# Make php installer
installer: style.css scripts.js lng licenses/licenses.html
	./build/make_installer.phpx
# Create license file
licenses/licenses.html:
	./licenses/lic_to_html.php
# Make these files executable
executable:
	chmod +x build/compile_css.phpx
	chmod +x build/compile_lng.phpx
	chmod +x build/compile_scripts.phpx
	chmod +x build/make_installer.phpx
	chmod +x build/clean.phpx
	chmod +x licenses/lic_to_html.php
# Clean up old mess
clean:
	./build/clean.phpx
.PHONY: clean executable