#
#OPTS = -O2 -I../../include
#SH_OPTS = -fpic -shared $(OPTS)
#EXT = .so
#CC = gcc

default:
	(cd ..;make)

all: hint$(SHLIB_SUFFIX)

hint.o: hint.c
	$(CC) $(CFLAGS) -I../../include -c hint.c

hint$(SHLIB_SUFFIX): hint.o
	$(SHLIB_LD) hint.o -o hint$(SHLIB_SUFFIX)
clean::
	rm -f *.o hint$(SHLIB_SUFFIX) *~

clean::
	rm -f hint$(SHLIB_SUFFIX) *.o *~


