HIPCC    ?= hipcc
INC      := -I. -I../headers
HIPFLAGS := -O2 -std=c++17

reduction: reduction.hip Makefile-hip
	$(HIPCC) $(HIPFLAGS) $(INC) reduction.hip -o reduction

clean:
	rm -f reduction
