Changeset 223 in xtideuniversalbios for trunk/Serial_Server
- Timestamp:
- Jan 25, 2012, 8:20:06 PM (13 years ago)
- google:author:
- krille_n_@hotmail.com
- Location:
- trunk/Serial_Server
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Serial_Server/library/Library.h
r219 r223 22 22 23 23 virtual void writeSector( void *buff ) = 0; 24 24 25 25 virtual void readSector( void *buff ) = 0; 26 26 … … 35 35 36 36 unsigned long totallba; 37 37 38 38 char *shortFileName; 39 39 int readOnly; … … 58 58 #include "../win32/win32serial.h" 59 59 #else 60 // there is no standard way to read/write and configure the serial port, OS specif c only60 // there is no standard way to read/write and configure the serial port, OS specific only 61 61 #endif 62 62 -
trunk/Serial_Server/makefile
r219 r223 7 7 # Use with GNU Make and Microsoft Visual C++ 2010 8 8 # 9 # Also works with Open Watcom C/C++ Version 1.9 10 # 9 11 10 12 CL = cl … … 14 16 15 17 build/serdrive.exe: $(WIN32OBJS) 16 $(CL) /Febuild/serdrive.exe $(WIN32OBJS)18 @$(CL) /Febuild/serdrive.exe $(WIN32OBJS) 17 19 18 20 build/%.obj: win32/%.cpp 19 $(CL) /c $(CLFLAGS) $< /Fo$@21 @$(CL) /c $(CLFLAGS) $< /Fo$@ 20 22 21 23 build/%.obj: library/%.cpp 22 $(CL) /c $(CLFLAGS) $< /Fo$@24 @$(CL) /c $(CLFLAGS) $< /Fo$@ 23 25 24 26 $(WIN32OBJS): library/library.h win32/win32file.h win32/win32serial.h library/file.h library/flatimage.h 25 27 26 28 build/checksum_test.exe: library/checksum.cpp 27 $(CL) /Febuild/checksum_test.exe /Ox library/checksum.cpp /Fobuild/checksum_test.obj -D CHECKSUM_TEST29 @$(CL) /Febuild/checksum_test.exe /Ox library/checksum.cpp /Fobuild/checksum_test.obj -D CHECKSUM_TEST 28 30 29 clean: 30 del /q build\*.* 31 release: build/serdrive.exe 32 @echo Compressing with UPX... 33 @upx -qq --ultra-brute build/serdrive.exe 34 @echo Done! 31 35 36 clean: 37 @del /q build\*.*
Note:
See TracChangeset
for help on using the changeset viewer.