Skip to content

Commit

Permalink
fix mistaken movement of directory names from config file to Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
rwordsworth committed Mar 12, 2020
1 parent 4f805de commit be10e90
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 11 deletions.
11 changes: 0 additions & 11 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,17 +1,6 @@
#configuration file, which specifies compiler, flags, paths, etc.
include config.mk

#-------------------------------------------------------------------------------
#local directory names

#source code directory
ds=src
#test code directory
dt=tests
#compiled object directory
do=obj
#compiled executable directory
db=bin

#-------------------------------------------------------------------------------
#stuff to compile
Expand Down
13 changes: 13 additions & 0 deletions _config.mk
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,16 @@ cxx=g++ # <--- GNU C++ compiler

flags=-Wall -Wextra -pedantic -O3 # <--- GNU compiler flags
#flags=-w2 -O3 # <--- Intel compiler flags

#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
#local directory names, DON'T CHANGE THESE

#source code directory
ds=src
#test code directory
dt=tests
#compiled object directory
do=obj
#compiled executable directory
db=bin

0 comments on commit be10e90

Please sign in to comment.