diff options
-rw-r--r-- | cpp/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cpp/Makefile b/cpp/Makefile new file mode 100644 index 0000000..08a6e43 --- /dev/null +++ b/cpp/Makefile @@ -0,0 +1,7 @@ +CC=gcc +CFLAGS=-o +CVERSION=-std=c++11 + +$1: $1.cpp + + $(CC) $(CVERSION) $(CFLAGS) $1 $1.cpp |