IMCtermite/makefile
2020-02-10 16:37:20 +00:00

15 lines
196 B
Makefile

RAW = ../raw/
SRC = src/
EXE = eatit
CCC = g++
OPT = -O3 -Wall
$(EXE) : $(SRC)main.cpp $(SRC)raweat.hpp $(SRC)half_precision_floating_point.hpp
$(CCC) $(OPT) $< -o $@
clean :
rm -f $(EXE)