aidenlab / straw

Extract data quickly from Juicebox via straw
MIT License
62 stars 36 forks source link

Add Makefile #8

Open nchernia opened 7 years ago

mmterpstra commented 7 years ago

maybe this is the way to start for a complete makefile: https://www.gnu.org/software/autoconf/manual/autoconf.html#Making-configure-Scripts

nchernia commented 5 years ago

this is a suggested makefile: CC=g++

for linux

CPPFLAGS=-O2 -lz -std=c++11

for mac

CPPFLAGS=-O2 -lz

for windows

CPPFLAGS=???

bin/straw: C++/straw.cpp C++/main.cpp C++/straw.h cd C++ && $(CC) $(CPPFLAGS) main.cpp straw.cpp ../python/old/straw.cpp -o ../$@