# if gencode_arch.local.txt exists, it will be used for GENCODE variable

CC_FLAGS = -g $(GENCODE)  -std=c++17 -Wall 
CC_SO_FLAGS = -shared -fPIC  -fvisibility=hidden

LIBS = -lstdc++ -lm

all: test_bounds_correction

test_bounds_correction: test_bounds_correction.cpp 
	gcc test_bounds_correction.cpp -o test_bounds_correction $(CC_FLAGS) $(LIBS)



.PHONY: clean

clean:
	rm -f test_bounds_correction

rebuild: clean all
