~nrtb-core/nrtb/alpha

« back to all changes in this revision

Viewing changes to cpp/Makefile

  • Committer: Rick Stovall
  • Date: 2013-11-16 21:09:50 UTC
  • mfrom: (15.1.16 ricks-sprint-003)
  • Revision ID: rick_stovall_fpstovall-20131116210950-riiyz7lv1njccv96
Merging sprint-003. some refactoring, a couple bug fixes, and the interthread communications modules.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#***********************************************
 
2
#This file is part of the NRTB project (https://launchpad.net/nrtb).
 
3
#
 
4
#    NRTB is free software: you can redistribute it and/or modify
 
5
#    it under the terms of the GNU General Public License as published by
 
6
#    the Free Software Foundation, either version 3 of the License, or
 
7
#    (at your option) any later version.
 
8
#
 
9
#    NRTB is distributed in the hope that it will be useful,
 
10
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
#    GNU General Public License for more details.
 
13
#
 
14
#    You should have received a copy of the GNU General Public License
 
15
#    along with NRTB.  If not, see <http://www.gnu.org/licenses/>.
 
16
#
 
17
#***********************************************
 
18
 
 
19
lib:
 
20
        @echo "============= building C++ code ==============="
 
21
        @make action=lib doit
 
22
        @echo "============= C++ build complete ==============="
 
23
 
 
24
clean:
 
25
        @echo "============= cleaning common libs ==============="
 
26
        @make action=clean doit
 
27
        @echo "========== common lib cleanup complete ==========="
 
28
 
 
29
doit:
 
30
        @cd common; make ${action}
 
31
        @cd sim_engine; make ${action}