diff --git a/Makefile b/Makefile index 5ce10aa..cf68af4 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,6 @@ -run: - g++ *.c *.cpp -o main.exe -lglfw -lGL && ./app +run_linux: + g++ *.c *.cpp -o app -lglfw -lGL && ./app +run_windows: + g++ *.c *.cpp -o app.exe -lglfw -lGL && ./app.exe build: - g++ *.c *.cpp -o app -lglfw -lGL + g++ *.c *.cpp -o app -lglfw -lGL && g++ *.c *.cpp -o main.exe -lglfw -lGL