#
# Makefile for non-Microsoft compilers
#

## Linux  (uncomment the 2 lines below for compilation on Linux)
#CXXFLAGS += -std=c++98 -Wall
#LDFLAGS += -lrt

## CygWin (uncomment the 2 lines below for compilation on CygWin)
#CXXFLAGS += -Wall
#LDFLAGS += 

all: MakeAll

opt: CXXFLAGS += -O4
opt: LDFLAGS += -O4
opt: MakeAll

MakeAll:
	$(MAKE) -C cncom
	$(MAKE) -C forestfire
	$(MAKE) -C krongen
	$(MAKE) -C kronfit
	$(MAKE) -C makedatasets
	$(MAKE) -C ncpplot
	$(MAKE) -C netevol
	$(MAKE) -C netstat
	$(MAKE) -C testgraph
