-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile.settings
58 lines (41 loc) · 1.78 KB
/
Makefile.settings
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#File: Makefile
#Project: RLGlue framework for B659-Reinforcement Learning spring 2017
#Purpose: Used for setting compile settings.
#Author: Adam White, Matthew Schlegel
#Last Modified By: Matthew Schlegel
#Modified On: Jan 3, 2017
###################################
###################################
#IMPORTANT
# Update these for your computer. (Below example is for macOS: Sierra and also works on SILO/SHARKS)
# Include points to where your included files are such as GSL.
# LIBS is library flags to inclue in compilation.
# NOTE: Please only use gsl (GNU Scientific Library https://www.gnu.org/software/gsl) as a linear algebra library.
INCLUDE = -I/usr/local/include
LIBS = -L/usr/local/lib -lgsl -lgslcblas -lm
#Change this to add the files you need to compile. (Your added files while doing homework.)
FILES = SimpleEnv.cxx SimpleAgent.cxx SimpleExp.cxx utils.c
# FILES = SimpleEnv.cxx ParameterSweepAgent.cxx ParameterSweepExp.cxx utils.c
###################################
###################################
###################################
# Change this if you want to update where your files are located. This only allows for header and source to be in the same folder.
#Where the .o files are placed. (Don't place anything important in here as make clean will destroy the entire folder.)
BIN = bin/
#Where your sorce files are. (Must End in '/')
SRC = ./
#Change if you want a seperate build directory. (Must End in '/')
BUILD = ./
#Name of the resulting executable.
PROG = RL_Exp
###################################
###################################
#Here you change your default compiler type. This can also be done on the command line.
#cpp
#language_selection ?=cpp
#c
language_selection ?= c
CC ?= gcc
PP ?= g++
#EXTRA_CPPFLAGS := -std=c++11
###################################