Merge branch 'dev'

This commit is contained in:
Thomas FILLOD 2022-04-14 10:18:50 +02:00
commit 47f229db35
3 changed files with 27 additions and 0 deletions

14
makefile Normal file
View File

@ -0,0 +1,14 @@
all: ppg
g++ -o ppg_program ppg.o
ppg:
g++ -c ppg.cpp
clean:
rm *.o
rm a.out

13
ppg.cpp Normal file
View File

@ -0,0 +1,13 @@
#include<iostream>
int main()
{
std::cout<<"PPG algorithm"<<std::endl;
return 0;
}

BIN
ppg_program Executable file

Binary file not shown.