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

CFLAGS	        += -DRADDB=\"$(RADDB)\" -I../../common
LDLIBS	        += ../../common/common.a $(INET_LIBS)

TARGETS		= radclient


all:		$(TARGETS)


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

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

