File: makefile.am

package info (click to toggle)
mona 1.4-13-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 3,228 kB
  • ctags: 4,357
  • sloc: ansic: 13,643; cpp: 12,612; sh: 9,051; makefile: 163; lisp: 48
file content (24 lines) | stat: -rw-r--r-- 727 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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

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 $@

.PHONY: rpm tgz lib examples