File: Makefile

package info (click to toggle)
avscan 1.1.2-openssl-1etch1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 2,636 kB
  • ctags: 2,292
  • sloc: ansic: 35,654; cpp: 3,498; makefile: 123; sh: 3
file content (26 lines) | stat: -rw-r--r-- 655 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
ALL_SRC_DIRS=avscan

# Uncomment this if you need to set the shell explicitly
#SHELL = /bin/bash

# Uncomment this if you need to set the make explicitly
#MAKE = /usr/bin/gmake


all config:
	@for subdir in $(ALL_SRC_DIRS); do			\
            $(MAKE) -s -C $$subdir -f Makefile $@;		\
        done
	@echo "To install, type \"su\" (to gain root privileges)\
and then type \"make install\"."

install:
	@for subdir in $(ALL_SRC_DIRS); do			\
            $(MAKE) -s -C $$subdir -f Makefile $@;		\
        done
	@echo "Installation complete."

clean:
	@for subdir in $(ALL_SRC_DIRS); do			\
            $(MAKE) -s -C $$subdir -f Makefile $@; 		\
        done