Skip to content

Commit

Permalink
déplacement de comManager
Browse files Browse the repository at this point in the history
  • Loading branch information
trecouvr committed Apr 8, 2012
1 parent d600693 commit 2275c73
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 5 deletions.
6 changes: 3 additions & 3 deletions executables/hokuyo/driver/makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Compilers options
C++_FLAG = -Wall -Werror `urg-config --cflags` `sdl-config --cflags` `urg-config --libs` `sdl-config --libs` -lc -lpthread

O_FILE = ComManager.o argManager.o urgDriver.o urgDriverHelp.o urgException.o urgDriverCompute.o mainAppException.o mainAppDriver.o
O_FILE = comManager.o argManager.o urgDriver.o urgDriverHelp.o urgException.o urgDriverCompute.o mainAppException.o mainAppDriver.o

hokuyoApp : src/mainApp.cpp $(O_FILE)
g++ -o hokuyoApp.exe src/mainApp.cpp $(O_FILE) $(C++_FLAG)
Expand All @@ -21,8 +21,8 @@ urgDriverHelp.o : src/urgDriverHelp.cpp
urgDriver.o : src/urgDriver.cpp
g++ -o urgDriver.o -c src/urgDriver.cpp $(C++_FLAG)

ComManager.o : src/ComManager.cpp
g++ -o ComManager.o -c src/ComManager.cpp $(C++_FLAG)
comManager.o : src/comManager.cpp
g++ -o comManager.o -c src/comManager.cpp $(C++_FLAG)

argManager.o : src/argManager.cpp
g++ -o argManager.o -c src/argManager.cpp $(C++_FLAG)
Expand Down
1 change: 1 addition & 0 deletions executables/hokuyo/driver/src/comManager.cpp
1 change: 1 addition & 0 deletions executables/hokuyo/driver/src/comManager.h
2 changes: 1 addition & 1 deletion executables/hokuyo/driver/src/mainAppDriver.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#include "urgDriver.h"
#include "argManager.h"
#include "ComManager.h"
#include "comManager.h"

/***********************************************************************
* \class MainAppDriver
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*
* */

#include "ComManager.h"
#include "comManager.h"
#include "protocole.h"

#include <string>
Expand Down
File renamed without changes.

0 comments on commit 2275c73

Please sign in to comment.