initial commit

This commit is contained in:
Mario Fink
2020-02-06 16:24:20 +00:00
commit 20566df9ca
6 changed files with 337 additions and 0 deletions

14
makefile Normal file
View File

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