File: Makefile

package info (click to toggle)
missinglib 0.4.10.debian-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 504 kB
  • ctags: 329
  • sloc: ml: 1,726; sh: 233; makefile: 163
file content (26 lines) | stat: -rw-r--r-- 533 bytes parent folder | download | duplicates (2)
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
# arch-tag: Top-level recursive Makefile
#
SUBDIRS := libsrc test

defaulttgt:
	$(MAKE) all

interact: defaulttgt
	cd libsrc && $(MAKE) interact

printenv:
	@$(MAKE) -f Makefile.setup printenv PATHTOTOP=.

install:
	$(MAKE) -C libsrc libinstall

test: defaulttgt
	$(MAKE) -C test test

distclean: clean
	-rm `find . -name "*~"`
	-rm -r libsrc/doc libsrc/ocamldoc.* libsrc/configParser/*.output
	-find . -name "*.cmo" -exec rm {} \;
	-find . -name "*.cmi" -exec rm {} \;
%:
	for DIR in $(SUBDIRS); do make -C $$DIR $@ || exit 1; done