From 3ee19029698adfa5e6660bef8ba00b584c5fb2d1 Mon Sep 17 00:00:00 2001 From: "estevan.biau-loyer" Date: Fri, 24 Feb 2023 10:00:12 +0100 Subject: [PATCH] amingus --- Makefile | 7 +++++++ PPG_algorithm.cpp => ppg.cpp | 0 2 files changed, 7 insertions(+) create mode 100644 Makefile rename PPG_algorithm.cpp => ppg.cpp (100%) diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..8935eff --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +all: ppg + g++ ppg.o -o ppg.exe +ppg: ppg.cpp + g++ -c ppg.cpp +clean: + rm *.o + rm *.exe diff --git a/PPG_algorithm.cpp b/ppg.cpp similarity index 100% rename from PPG_algorithm.cpp rename to ppg.cpp