File: Makefile

package info (click to toggle)
libapache2-mod-auth-memcookie 1.0.2-5
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 156 kB
  • sloc: ansic: 407; php: 72; makefile: 21
file content (18 lines) | stat: -rw-r--r-- 315 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
MY_APXS=/usr/bin/apxs2
MY_LDFLAGS=-lmemcache
MY_CFLAGS=

.SUFFIXES: .c .o .la
.c.la:
	$(MY_APXS) $(MY_LDFLAGS) $(MY_CFLAGS) -c $< 

all:  mod_auth_memcookie.la

install: mod_auth_memcookie.la
	@echo "-"$*"-" "-"$?"-" "-"$%"-" "-"$@"-" "-"$<"-"
	$(MY_APXS) -i $?

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