-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile
More file actions
27 lines (23 loc) · 796 Bytes
/
Makefile
File metadata and controls
27 lines (23 loc) · 796 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
###########################################################
#
# This Makefile can install or uninstall multi, nothing else
#
###########################################################
usage:
@echo "usage: make install|uninstall"
install:
@echo "Installing Commencing ..."
@install -m 0755 -oroot php.multi /usr/local/bin/php.multi
@install -m 0755 php.env /usr/local/bin/php.env
@install -m 0755 -oroot php.pecl /usr/local/bin/php.pecl
@install -m 0755 -oroot php.remote /usr/local/bin/php.remote
@echo "Installation Complete"
uninstall:
@echo "Removal Commencing .."
@rm -rf /usr/local/bin/php.multi
@rm -rf /usr/local/bin/php.env
@rm -rf /usr/local/bin/php.pecl
@rm -rf /usr/local/bin/php.remote
@echo "Removal Complete (but not really)"
all: install
.PHONY: install