
# Makefile configuration
include 	../../Make.conf

TARGETS         = radldap

CFLAGS	        += $(RADLDAP_CFLAGS) -I../../common
LDFLAGS	        += $(RADLDAP_LDFLAGS)
LDLIBS	        += $(RADLDAP_LDLIBS)


# To prevent Make from being satisfied after the first target
all:            $(TARGETS)


# Clean
clean:		
		rm -f $(TARGETS) *.o core

# Install
install:
		$(INSTEXEC) $(TARGETS) $(MODULES)

