-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathMakefile
More file actions
43 lines (29 loc) · 801 Bytes
/
Makefile
File metadata and controls
43 lines (29 loc) · 801 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
36
37
38
39
40
41
42
43
#!/usr/bin/env make
#
# JSONPath.sh - JSONPath implementation written in Bash
#############
# utilities #
#############
INSTALL= install
SHELL= bash
######################
# target information #
######################
DESTDIR= /usr/local/bin
TARGETS= JSONPath.sh
######################################
# all - default rule - must be first #
######################################
all: ${TARGETS}
#################################################
# .PHONY list of rules that do not create files #
#################################################
.PHONY: all configure clean clobber install
###################################
# standard Makefile utility rules #
###################################
configure:
clean:
clobber: clean
install: all
${INSTALL} -m 0555 ${TARGETS} ${DESTDIR}