diff --git a/makefile b/makefile new file mode 100644 index 0000000..8ac1ae0 --- /dev/null +++ b/makefile @@ -0,0 +1,5 @@ +all: ppg + g++ ppg.o -o ppg + +ppg: ppg.cpp + g++ -c ppg.cpp diff --git a/ppg b/ppg new file mode 100755 index 0000000..d3b1139 Binary files /dev/null and b/ppg differ diff --git a/ppg.cpp b/ppg.cpp index e69de29..a46866d 100644 --- a/ppg.cpp +++ b/ppg.cpp @@ -0,0 +1,4 @@ +int main() +{ + return 0; +}