diff --git a/makefile b/makefile new file mode 100644 index 0000000..d0389e8 --- /dev/null +++ b/makefile @@ -0,0 +1,14 @@ + + +all: ppg + g++ -o ppg_program ppg.o + + +ppg: + g++ -c ppg.cpp + + + +clean: + rm *.o + rm a.out diff --git a/ppg.cpp b/ppg.cpp new file mode 100644 index 0000000..81fae21 --- /dev/null +++ b/ppg.cpp @@ -0,0 +1,13 @@ + + +#include + + + + +int main() +{ + std::cout<<"PPG algorithm"<