Fix one more Makefile formatting issue

Improve debugging support
 Make SRV records work for BIND outputs


git-svn-id: https://svn.alkaloid.net/gpl/ldap2dns/trunk@321 06cd67b6-e706-0410-b29e-9de616bca6e9
This commit is contained in:
Ben Klang
2006-06-08 16:48:46 +00:00
parent 1250d0950e
commit 5e7ac922fd
2 changed files with 8 additions and 4 deletions

View File

@@ -2,7 +2,7 @@
VERSION=0.3.7
RELEASE=0
CC=gcc -O2
CCDEBUG=gcc -g
CCDEBUG=gcc -g -ggdb
CFLAGS=$(INC) -DVERSION='"$(VERSION)"'
LIBS=-lldap -llber
LD=gcc
@@ -36,8 +36,8 @@ ldap2dns: ldap2dns.o
ldap2dnsd: ldap2dns
ln -f ldap2dns ldap2dnsd
ldap2dns-dbg: ldap2dns.o-dbg $(LIBS)
$(LD) $(LDFLAGS) -o $@ $+
ldap2dns-dbg: ldap2dns.o-dbg
$(LD) $(LDFLAGS) $(LIBS) -o $@ $+
ldap2dns.o: ldap2dns.c
$(CC) $(CFLAGS) -c $< -o $@