-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathmakefile.am
More file actions
28 lines (22 loc) · 788 Bytes
/
makefile.am
File metadata and controls
28 lines (22 loc) · 788 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
SUBDIRS = config Mem BDD DFA GTA Front Lib Examples
EXTRA_DIST = mona.spec mona-mode.el mona.1
MAINTAINERCLEANFILES = configure stamp-h.in makefile makefile.in aclocal.m4 \
config.h.in config.log config.status config/missing configure.lineno
man_MANS = mona.1
dist_data_DATA = mona-mode.el
monadir = $(includedir)/mona
mona_HEADERS = config.h
ACLOCAL_AMFLAGS = -I m4
tgz: dist
mv -f mona-@VERSION@.tar.gz mona-@VERSION@-@RELEASE@.tar.gz
rpm: tgz
rpmbuild -ta mona-@VERSION@-@RELEASE@.tar.gz
cp `rpm --eval %{_rpmdir}/%{_arch}`/mona-@VERSION@-@RELEASE@.`rpm --eval %{_arch}`.rpm \
`rpm --eval %{_srcrpmdir}`/mona-@VERSION@-@RELEASE@.src.rpm .
lib: all
$(MAKE) -C Lib $@
examples: all
$(MAKE) -C Examples $@
maintainer-clean-local:
-rm -rf m4
.PHONY: rpm tgz lib examples