code compiles with makefile and displays text
This commit is contained in:
parent
035748afd7
commit
f1e2832eef
|
|
@ -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