5 lines
94 B
Makefile
5 lines
94 B
Makefile
run:
|
|
g++ *.c *.cpp -o main.exe -lglfw -lGL && ./app
|
|
build:
|
|
g++ *.c *.cpp -o app -lglfw -lGL
|