File: Makefile

package info (click to toggle)
ldap2zone 0.1-7%2Bsqueeze1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 148 kB
  • ctags: 20
  • sloc: sh: 394; ansic: 325; makefile: 58
file content (16 lines) | stat: -rw-r--r-- 535 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
all: ldap2zone

ldap2zone: ldap2zone.c
	gcc -Wall ldap2zone.c -o ldap2zone -lldap

install: ldap2zone
	install -d ${DESTDIR}/usr/sbin
	install -d ${DESTDIR}/usr/share/doc/ldap2zone
	install ldap2zone ${DESTDIR}/usr/sbin/ldap2zone
	install ldap2bind ${DESTDIR}/usr/sbin/ldap2bind
	install -D -m 0644 debian/ldap2zone.lintian-overrides $(DESTDIR)/usr/share/lintian/overrides/ldap2zone
	install -d $(CURDIR)/debian/tmp/etc/default
	install -m 644 $(CURDIR)/debian/default $(CURDIR)/debian/tmp/etc/default/ldap2zone

clean:
	-rm ldap2zone