

# Your mileage may vary here.  Change HOME to the 
# root of your httpd-2.0 path.  Also, I'm statically
# linking in the apr library here.  

APR_LIB		= $(HOME)/httpd-2.0/srclib/apr/.libs/libapr.a
ALL_LIBS	= -lm -lcrypt -lnsl -ldl -pthread

APR_DIR		= $(HOME)/httpd-2.0/srclib/apr/include 
WORKING_DIR	= $(HOME)/apr

INCLUDES	=-I$(APR_DIR) -I$(APR_DIR)

udpclient: udpclient.c
	gcc -g -Wall -o udpclient udpclient.c $(INCLUDES) \
	$(APR_LIB) $(ALL_LIBS) -L/export/home/adt/httpd-2.0/srclib/apr





