Say your target position is at T, and your sprites position is P, then the vector T-P points into the direction from P to T. So you've to align your texture in that direction. You don't need to do trigonometry for this! So here is how it goes:
T.x and T.y are the x and y positions of T, and in the same way P.x and P.y for P. The vector T - P => (T.x - P.x, T.y - P.z) = D_l. We want this vector to be normalized, which can be done by scaling the elements of the vector with 1/length(D_l). So we obtain D_l by
D.x = D_l.x / sqrt( D.x^2 + D.y^2 ) = (T.x - P.x) / sqrt( (T.x - P.x)^2 + (T.y - P.y)^2 )
D.y = D_l.y / sqrt( D.x^2 + D.y^2 ) = (T.y - P.y) / sqrt( (T.x - P.x)^2 + (T.y - P.y)^2 )
and just for completenes
D.z = 0
So D is now the vector containing the direction toward the target, i.e. the Up-direction for the sprite. Now we need the Right-direction. We could now do some fancy tricks with slopes, but there's a leaner way: We want to find the vector perpendicular to the plane spanned by the direction vector and the vector looking down onto the scene, i.e. the Z direction. I.e. we want to find the cross product yielding the bi-direction D × Z = B
Remembering the definition of the cross product, and considering Z.x = Z.y = 0, Z.z = 1
B.x = D.y · Z.z - D.z · Z.y = D.y
B.y = D.z · Z.x - D.x · Z.z = -D.x
B.z = D.x · Z.y - D.y · Z.x = 0
Just like expected B.z = 0. From this you can create the rotation matrix:
B.x D.x 0 0
B.y D.y 0 0
0 0 1 0
0 0 0 1
=
D.y D.x 0 0
-D.x D.y 0 0
0 0 1 0
0 0 0 1
which is a orthonormal matrix and thus describes a rotation. You can apply the rotation this matrix using glMultMatrix, or if you want to put the position therein, too, then load the following vaiant using glLoadMatrix
B.x D.x 0 P.x
B.y D.y 0 P.y
0 0 1 P.z
0 0 0 1