File: Makefile.in

package info (click to toggle)
mod-proxy-msrpc 0.6-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 380 kB
  • ctags: 275
  • sloc: ansic: 2,347; makefile: 56
file content (20 lines) | stat: -rw-r--r-- 477 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
all:
	make -C src all

check: all
	make -C test check

install: all
	$(warning )
	$(warning ---[ MANUAL INSTALLATION REQUIRED ]---)
	$(warning To install the module, please copy the file src/.libs/mod_proxy_msrpc.so)
	$(warning to the directory where Apache httpd loads its modules from.)
	$(warning )
	$(error The 'install' target isn't implemented yet)

clean:
	make -C src clean
	make -C test clean
	rm -vf Makefile config.log config.status

.PHONY: all clean check install