CC = gcc

test_hdp: test_hdp.o hdp.o
	$(CC) -o test_hdp test_hdp.o hdp.o

clean:
	rm -f *.o test_hdp
