make it so that you can like actually build this for windows
This commit is contained in:
8
Makefile
8
Makefile
@@ -1,4 +1,6 @@
|
|||||||
run:
|
run_linux:
|
||||||
g++ *.c *.cpp -o main.exe -lglfw -lGL && ./app
|
g++ *.c *.cpp -o app -lglfw -lGL && ./app
|
||||||
|
run_windows:
|
||||||
|
g++ *.c *.cpp -o app.exe -lglfw -lGL && ./app.exe
|
||||||
build:
|
build:
|
||||||
g++ *.c *.cpp -o app -lglfw -lGL
|
g++ *.c *.cpp -o app -lglfw -lGL && g++ *.c *.cpp -o main.exe -lglfw -lGL
|
||||||
|
|||||||
Reference in New Issue
Block a user