diff --git a/makefile b/makefile new file mode 100644 index 0000000..98bc323 --- /dev/null +++ b/makefile @@ -0,0 +1,8 @@ +all: ppg + g++ ppg.o -o ppg.exe +ppg: ppg.cpp + g++ -c ppg.cpp +clean: + rm *.o + rm *.exe +