-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakeBase
More file actions
32 lines (27 loc) · 965 Bytes
/
Copy pathMakeBase
File metadata and controls
32 lines (27 loc) · 965 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
GNUCAP_CONF = $(shell which gnucap-conf$(SUFFIX))
PACKAGE_NAME = gnucap-plugins
# all: ${PLUGINS} all-recursive
#-----------------------------------------------------------------------------
check: all
#-----------------------------------------------------------------------------
checkin: check-git
$(MAKE) date
-git commit -a
check-git:
@if [ ! -d .git ]; then\
echo need git repository; \
exit 1; \
fi
#-----------------------------------------------------------------------------
distclean: distclean-local
distclean-local:
@if [ ! -d .git ]; then\
rm -rf .gitignore; \
fi
#-----------------------------------------------------------------------------
.PHONY: check-git install
#-----------------------------------------------------------------------------
.PHONY: ${RECURSIVE_TARGETS} ${RECURSIVE_TARGETS:%=%-recursive} \
install install-here check all distclean-local
.PHONY: all clean distclean check
include ${top_srcdir}/Make.test