### # $Id: makefile.vc 12864 2008-05-15 13:13:28Z dburken $ # # Windows nmake make file. This code should compile with the Microsoft .NET # compiler. # # Currently for a typical build on windows you would do the following. # - cd back to the ossim top and edit its nmake.opt file appropriately. # - nmake /f makefile # # NOTE: If you make shared apps it's handy to copy the ossim.dll to the bin # directory. ### !INCLUDE ..\..\nmake.opt INC = -I.. -I. $(INC) OBJ = \ CivilDateTime.obj \ Coordinate.obj \ Ephemeris.obj \ Equation.obj \ GMSTDateTime.obj \ GalileanEphemeris.obj \ GeodesicCoordinate.obj \ GeographicEphemeris.obj \ HermiteInterpolator.obj \ JSDDateTime.obj \ JulianDate.obj \ MJDDateTime.obj \ PlatformPosition.obj \ RectangularCoordinate.obj \ RefPoint.obj \ SarSensor.obj \ Sensor.obj \ SensorParams.obj default: $(OBJ) clean: $(RM) *.obj *~