Difference between revisions of "Compiling"

From Pengatom Robotics Wiki
Jump to: navigation, search
(Created page with "##Make Instructions ###The Makefile for the core library is found here: `HROS5-Framework/Linux/build` To compile core framework libraries: `$ sudo make all` Any time ch...")
 
 
Line 1: Line 1:
##Make Instructions
+
== Make Instructions ==
  
###The Makefile for the core library is found here:
+
=== The Makefile for the core library is found here: ===
 
   
 
   
`HROS5-Framework/Linux/build`
+
HROS5-Framework/Linux/build
  
 
To compile core framework libraries:  
 
To compile core framework libraries:  
  
`$ sudo make all`
+
$ sudo make all
  
 
Any time changes are made to core libraries, you will need to recompile:  
 
Any time changes are made to core libraries, you will need to recompile:  
  
`$ sudo make clean && make all`
+
$ sudo make clean && make all
  
###The Makefile for projects & utilities is found here:  
+
=== The Makefile for projects & utilities is found here: ===
  
`HROS5-Framework/Linux/project`
+
HROS5-Framework/Linux/project
  
 
To compile, run the following in each respective project folder:  
 
To compile, run the following in each respective project folder:  
  
`$ sudo make all`
+
$ sudo make all
  
 
Any time changes are made to projects, you will need to recompile:  
 
Any time changes are made to projects, you will need to recompile:  
  
`$ sudo make clean && make all`
+
$ sudo make clean && make all

Latest revision as of 07:39, 16 March 2017

Make Instructions

The Makefile for the core library is found here:

HROS5-Framework/Linux/build

To compile core framework libraries:

$ sudo make all

Any time changes are made to core libraries, you will need to recompile:

$ sudo make clean && make all

The Makefile for projects & utilities is found here:

HROS5-Framework/Linux/project

To compile, run the following in each respective project folder:

$ sudo make all

Any time changes are made to projects, you will need to recompile:

$ sudo make clean && make all