#
#  Copyright (c) 1996, Trusted Information Systems, Incorporated
#  All rights reserved.
# 
#  Redistribution and use are governed by the terms detailed in the
#  license document ("LICENSE") included with the toolkit.
#

#
#	Author: Kelly Djahandari, Trusted Information Systems, Inc.
#


#include	../../Makefile.config

#CFLAGS= -I.. $(COPT) -g -DBINDDEBUG 
CFLAGS= -I.. $(COPT) -g


all:	wrapper

wrapper: wrapper.o
	$(CC) $(LDFL) -o $@ wrapper.o

clean:
	rm -f wrapper *.o
