forked from aks/bash-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
76 lines (62 loc) · 1.31 KB
/
Makefile
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# Makefile for bash-lib
#
# Copyright 2006-2022 Alan K. Stebbens <[email protected]>
SHELL := $(shell which bash)
bindirs =
bins =
tbindirs = $(HOME)/bin
tbins = calfunc
GDATE = /usr/local/bin/gdate
$(tbindirs)/calfunc: calfaq/calfunc.c calfaq/calfaq.h
cd calfaq ; $(MAKE) install prefix=$(HOME)
$(GDATE):
brew install gdate
test-dates.dat: gen-test-dates.sh
./gen-test-dates.sh
test-dates-utils.sh: test-dates.dat $(GDATE)
libdirs = $(HOME)/lib
libs = \
Makefile.inc \
Makefile-template \
arg-utils.sh \
bash-check.sh \
bash-lib.sh \
calendar-utils.sh \
cli-template.sh \
date-utils.sh \
hash-utils.sh \
help-util.sh \
list-utils.sh \
option-utils.sh \
prompt-colors.sh \
real-utils.sh \
reset-util-vars.sh \
run-utils.sh \
sh-utils.sh \
sync-files.sh \
talk-utils.sh \
test-utils.sh \
test-template.sh \
text-utils.sh \
time-utils.sh \
# end of list
prompt-colors.sh: generate-prompt-colors
./generate-prompt-colors
clean::
rm -f prompt-colors.sh*
rm -f test/*.{out,err}
subdirs=
tests= \
test-arg-utils.sh \
test-date-utils.sh \
test-hash-utils.sh \
test-list-utils.sh \
test-real-utils.sh \
test-sh-utils.sh \
test-talk-utils.sh \
test-text-utils.sh \
test-time-utils.sh \
#test-sync-files.sh \
# end of tests
include Makefile.inc
# vim: sw=4 ai