File: Makefile.in

package info (click to toggle)
mod-auth-mysql 4.3.9-11
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 372 kB
  • ctags: 111
  • sloc: ansic: 1,270; sh: 1,094; makefile: 64
file content (29 lines) | stat: -rw-r--r-- 635 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
26
27
28
29
APXS	= @apxs@
APXSFLAGS =
APXS2	= @apxs2@
APXS2FLAGS =
SRCS	= mod_auth_mysql.c
HDRS	= config.h
OPTS	= @build_opts@ -lmysqlclient
MODULES = @modules@

all: $(MODULES)

apache13_mod_auth_mysql.so: $(SRCS) $(HDRS)
	$(APXS) $(APXSFLAGS) -o $@ $(OPTS) -c $(SRCS)

apache2_mod_auth_mysql.so: apache2_mod_auth_mysql.la
	cp .libs/apache2_mod_auth_mysql.so .

apache2_mod_auth_mysql.la: $(SRCS) $(HDRS)
	$(APXS2) $(APXS2FLAGS) -o $@ $(OPTS) -DAPACHE2 -c $(SRCS)

clean:
	-rm -rf *.o *.so *.lo *.slo *.la .libs

distclean: clean
	-rm -f config.status config.log config.h Makefile
	-rm -rf autom4te.cache

maintclean: distclean
	-rm -f configure