File: Makefile

package info (click to toggle)
ftpfs 0.6.2-9
  • links: PTS
  • area: main
  • in suites: woody
  • size: 328 kB
  • ctags: 208
  • sloc: ansic: 2,078; makefile: 255; sh: 26
file content (26 lines) | stat: -rw-r--r-- 358 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
default: all

all:
	@make -C ftpfs
	@make -C ftpmount

clean:
	@make -C ftpfs clean
	@make -C ftpmount clean

install:
	@make -C ftpfs install
	@make -C ftpmount install


uninstall:
	@make -C ftpfs uninstall
	@make -C ftpmount uninstall

install_automount:
	@make -C ftpmount install_automount

uninstall_automount:
	@make -C ftpmount uninstall_automount