Skip to content

Instantly share code, notes, and snippets.

View aykutbulut's full-sized avatar

Aykut Bulut aykutbulut

View GitHub Profile
;; Use at your own risk!
;;(setq column-number-mode t)
(add-hook 'before-save-hook 'delete-trailing-whitespace)
;; go mode, not installed yet
;;(setq load-path (cons "/home/aykut/opt/go/misc/emacs" load-path))
;;(require 'go-mode-load)
CC=g++
PROGNAME=c_solver
INCLUDES=
CFLAGS=-g -Wall
LDFLAGS=
LIBS=
OBJECTS=solverA.o\
solverB.o\
solverC.o
@aykutbulut
aykutbulut / get.dependencies.sh
Created February 1, 2016 22:06 — forked from tkralphs/get.dependencies.sh
Script to automatically download and build dependencies of COIN-OR projects
#!/bin/bash
#Exit when command fails
set -e
#Set defaults
root_dir=$PWD
declare -i num_actions
num_actions=0
sparse=false