~mafix/mod-ldap-cfg/main

« back to all changes in this revision

Viewing changes to build-tree/mod_ldap_cfg/Makefile

  • Committer: felix
  • Date: 2009-02-23 23:32:28 UTC
  • Revision ID: felix@fixflop-20090223233228-u1p1mmz2qn7yqy55
initial import from http://modldapcfg.bayour.com/ version 1.0.7

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
APXS := $(shell if ! which apxs; then which apxs2; fi)
 
2
 
 
3
all: mod_ldap_cfg.o
 
4
 
 
5
mod_ldap_cfg.o: mod_ldap_cfg.c
 
6
        $(APXS) -c -Wc,-g -l ldap mod_ldap_cfg.c
 
7
 
 
8
clean:
 
9
        rm -rf *.o *.so *.lo *.la *.slo *~ .libs
 
10
 
 
11
install:
 
12
        $(APXS) -i mod_ldap_cfg.la
 
13
 
 
14
.PHONY: all clean install