File: Makefile.in

package info (click to toggle)
squid 2.4.6-2woody8
  • links: PTS
  • area: main
  • in suites: woody
  • size: 8,724 kB
  • ctags: 9,570
  • sloc: ansic: 75,398; sh: 2,213; makefile: 1,839; perl: 1,099; awk: 35
file content (38 lines) | stat: -rw-r--r-- 813 bytes parent folder | download
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
33
34
35
36
37
38
#  Makefile for storage modules in the Squid Object Cache server
#
#  $Id: Makefile.in,v 1.7 2000/06/26 06:21:04 wessels Exp $
#

# The 'nop' is in the SUBDIRS list because some Unixes that can't
# handle empty for lists.

SUBDIRS		= @AUTH_MODULES@ nop

all:
	@for dir in $(SUBDIRS); do \
	    if [ -f $$dir/Makefile ]; then \
	        sh -c "cd $$dir && $(MAKE) all" || exit 1; \
	    fi; \
	done;

clean:
	-for dir in *; do \
	    if [ -f $$dir/Makefile ]; then \
		sh -c "cd $$dir && $(MAKE) clean"; \
	    fi; \
	done

distclean:
	-rm -f Makefile
	-for dir in *; do \
	    if [ -f $$dir/Makefile ]; then \
		sh -c "cd $$dir && $(MAKE) distclean"; \
	    fi; \
	done

.DEFAULT:
	@for dir in $(SUBDIRS); do \
	    if [ -f $$dir/Makefile ]; then \
		sh -c "cd $$dir && $(MAKE) $@" || exit 1; \
	    fi; \
	done;