UCBerkeleySETI/rawspec

Makefile line 86 uses the wrong variable for compiling

texadactyl opened this issue · 2 comments

This line 86:

	$(CC) -o $@ -DFBUTILS_TEST -ggdb -O0 $< -lm

should be this:

	$(HOST_COMPILER) -o $@ -DFBUTILS_TEST -ggdb -O0 $< -lm

cc: @David-McKenna

It looks like the other *.c compilations also need the same change.

I think that I was confused by the name HOST_COMPILER.