Changeset 841
- Timestamp:
- 08/18/08 22:21:18 (4 months ago)
- Location:
- trunk/src
- Files:
-
- 1 added
- 1 modified
-
Version.rc (added)
-
makefile.vc (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/makefile.vc
r813 r841 20 20 detail\writer11.obj \ 21 21 detail\file.obj 22 23 default: $(LAS_DLL) 22 23 RES = Version.res 24 25 default: $(LAS_DLL) $(RES) 24 26 25 27 all: default … … 29 31 lib /nologo /out:$(LAS_LIB) $(LAS_OBJS) $(GEOTIFF_LIB) 30 32 31 $(LAS_DLL): $(LAS_LIB) 33 $(LAS_DLL): $(LAS_LIB) $(RES) 32 34 link /dll \ 33 $(LAS_OBJS) $(LAS_LIB) \35 $(LAS_OBJS) $(LAS_LIB) Version.res \ 34 36 /out:$(LAS_DLL) /implib:$(LAS_LIB_DLL) 35 37 if exist $(LAS_DLL).manifest mt -manifest $(LAS_DLL).manifest -outputresource:$(LAS_DLL);2 36 38 39 Version.res: 40 rc -fo Version.res -r -I..\include\liblas\capi -I..\include -D_MSC_VER Version.rc 41 37 42 clean: 38 43 -del *.bak … … 42 47 -del *.obj 43 48 -del *.manifest 49 -del *.res 44 50 for %d in ( $(LAS_OBJS) ) do \ 45 51 del %d
