diff --git a/.gitignore b/.gitignore index e257658..8229def 100644 --- a/.gitignore +++ b/.gitignore @@ -26,9 +26,3 @@ *.la *.a *.lib - -# Executables -*.exe -*.out -*.app - diff --git a/Makefile b/Makefile index bbc7305..5ce10aa 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ run: - g++ *.c *.cpp -o app -lglfw -lGL && ./app + g++ *.c *.cpp -o main.exe -lglfw -lGL && ./app build: g++ *.c *.cpp -o app -lglfw -lGL diff --git a/main.exe b/main.exe new file mode 100755 index 0000000..47e872f Binary files /dev/null and b/main.exe differ