diff --git a/Makefile b/Makefile index 681cc96..d98aed7 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,7 @@ main: compile link compile: + g++ -c -o build/main.o src/main.cpp link: - + g++ -o bin/main.out build/*.o diff --git a/bin/main.out b/bin/main.out new file mode 100755 index 0000000..446ace6 Binary files /dev/null and b/bin/main.out differ diff --git a/build/main.o b/build/main.o new file mode 100644 index 0000000..bce0179 Binary files /dev/null and b/build/main.o differ diff --git a/include/sorts.h b/include/sorts.h new file mode 100644 index 0000000..e69de29 diff --git a/src/main.cpp b/src/main.cpp new file mode 100644 index 0000000..4d31658 --- /dev/null +++ b/src/main.cpp @@ -0,0 +1,7 @@ +#include + +int main(void) +{ + std::cout << "hello world\n"; + return 0; +} diff --git a/src/sorts.cpp b/src/sorts.cpp new file mode 100644 index 0000000..e69de29