Merge branch 'dev'
This commit is contained in:
commit
47f229db35
|
|
@ -0,0 +1,14 @@
|
||||||
|
|
||||||
|
|
||||||
|
all: ppg
|
||||||
|
g++ -o ppg_program ppg.o
|
||||||
|
|
||||||
|
|
||||||
|
ppg:
|
||||||
|
g++ -c ppg.cpp
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm *.o
|
||||||
|
rm a.out
|
||||||
|
|
@ -0,0 +1,13 @@
|
||||||
|
|
||||||
|
|
||||||
|
#include<iostream>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
std::cout<<"PPG algorithm"<<std::endl;
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
Binary file not shown.
Loading…
Reference in New Issue