objects = histogram256.o histogram64.o histogram_test.o

all: $(objects)
	nvcc $(objects) -o test

histogram256.o: histogram256.cu
	nvcc -I../../../helper/common/inc -dc $< -o $@

histogram64.o: histogram64.cu
	nvcc -I../../../helper/common/inc -dc $< -o $@

histogram_test.o:histogram_test.cu
	nvcc -I../../../helper/common/inc -dc $< -o $@

clean:
	rm -f *.o test

