File: Makefile.in

package info (click to toggle)
uclmmbase 1.2.16.0-2
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 1,696 kB
  • ctags: 1,555
  • sloc: ansic: 11,851; sh: 1,759; makefile: 195
file content (25 lines) | stat: -rw-r--r-- 538 bytes parent folder | download | duplicates (4)
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
#
# Makefile for the common code library project. 
# This probably requires GNU make.
#

SUBDIRS=src tests examples @OPTDOC@

all: all-recursive

all-recursive:
	for s in $(SUBDIRS) ; do (cd $$s && $(MAKE)) || exit 1 ; done

clean: clean-recursive

clean-recursive:
	for s in $(SUBDIRS) ; do (cd $$s && $(MAKE) clean) ; done

distclean: distclean-recursive
	rm -f Makefile config.status config.cache config.log

distclean-recursive:
	for s in $(SUBDIRS) ; do (cd $$s && $(MAKE) distclean) ; done

.PHONY: clean clean-recursive distclean